-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.php
73 lines (63 loc) · 2.69 KB
/
server.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
62
63
64
65
66
67
68
69
70
71
72
73
<?php
$root = $_SERVER['DOCUMENT_ROOT'];
require_once($root . '/api/api.php');
require_once($root . '/api/params.php');
$project = 'anekdot';
$connect = Api::$home . '/connect.ini';
$handler = parse_ini_file($connect, true)[$project];
$DBH = Api::mysql($handler);
require_once('server/tag.php');
require_once('server/anekdot.php');
require_once('server/version.php');
require_once('server/ratio.php');
/** @section Обработка запросов к Api @router */
$response = array();
$method = strtolower(_::str('method'));
switch ($method) {
/** @subsection Работа с тегами */
case 'tag.all': // Список всех тегов
$response = Tag::all();
break;
case 'tag.add': // Добавление нового тега
$response = Tag::add(_::str('name'));
break;
case 'tag.get': // Список всех анекдотов с данным тегом
$response = Tag::get(_::int('tag'));
break;
case 'tag.attach': // Добавление тега анекдоту
$response = Tag::attach(_::int('tag'), _::int('anekdot'));
break;
/** @subsection Работа с анекдотами */
case 'anekdot.all': // Список всех анекдотов
$response = Anekdot::all();
break;
case 'anekdot.add': // Добавление нового анекдота
$response = Anekdot::add(_::str('title'), _::int('number'), _::str('text'), _::str('name'));
break;
case 'anekdot.get': // Информация об анекдоте
$response = Anekdot::get(_::int('id'));
break;
case 'anekdot.tags': // Список тегов анекдота
$response = Anekdot::tag(_::int('anekdot'));
break;
case 'anekdot.version': // Список версий анекдота
$response = Anekdot::versions(_::int('anekdot'));
break;
/** @subsection Работа с текстами анекдотов */
case 'anekdot.upd': // Добавление версии анекдота
$response = Version::upd(_::int('anekdot'), _::str('version'), _::str('name'));
break;
/** @subsection Работа с оценками и номерами */
case 'ratio.attach': // Добавление анекдоту номера
$response = Ratio::attach(_::int('anekdot'), _::int('number'));
break;
// @todo
/** @subsection Обработка ошибочного запроса */
default: // Все прочие запросы игнорируются
Api::die(0);
}
/** @section Ответ сервера */
Api::out($response);
/** @section Закрытие подключеня к БД */
$DBH = null;
?>