-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
61 lines (51 loc) · 1.18 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
require('App.php');
/**
* Authentication
* $request_data must include username and password
*/
$router->post('/auth',function($request_data){
echo Auth::login($request_data);
});
/**
* Get the whole post collection
*/
$router->get('/posts',function(){
$posts = DB::table("posts")->all();
echo json_encode($posts);
});
/**
* Get request with :id parameter
*/
$router->get('/posts/:id',function($id){
$post = DB::table("posts")->where("_id",$id)->get();
echo json_encode($post);
});
/**
* Protected routes
*/
if($auth->routes()){
/**
* Post request
*/
$router->post('/posts',function($data){
$post = DB::table("posts")->save($data);
echo json_encode($post);
});
/**
* Delete request
*/
$router->delete('/posts/:id',function($id){
DB::table("posts")->delete($id);
});
/**
* Put request
*/
$router->put('/posts',function($data){
$post = DB::table("posts")->save($data);
echo json_encode($post);
});
}
$router->notFound(function(){
return Helper::response(404,"Not Found!",null);
});