forked from kuisatz/slim_okulsis_v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blLoginLogout.php
105 lines (68 loc) · 2.87 KB
/
blLoginLogout.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
// test commit for branch slim2
require 'vendor/autoload.php';
/*$app = new \Slim\Slim(array(
'mode' => 'development',
'debug' => true,
'log.enabled' => true,
));*/
$app = new \Slim\SlimExtended(array(
'mode' => 'development',
'debug' => true,
'log.enabled' => true,
'log.level' => \Slim\Log::INFO,
'exceptions.rabbitMQ' => true,
'exceptions.rabbitMQ.logging' => \Slim\SlimExtended::LOG_RABBITMQ_FILE,
'exceptions.rabbitMQ.queue.name' => \Slim\SlimExtended::EXCEPTIONS_RABBITMQ_QUEUE_NAME
));
/**
* "Cross-origion resource sharing" kontrolüne izin verilmesi için eklenmiştir
* @author Okan CIRAN Ğ
* @since 05.01.2016
*/
$res = $app->response();
$res->header('Access-Control-Allow-Origin', '*');
$res->header("Access-Control-Allow-Methods: PUT, GET, POST, DELETE, OPTIONS");
$app->add(new \Slim\Middleware\MiddlewareInsertUpdateDeleteLog());
$app->add(new \Slim\Middleware\MiddlewareHMAC());
$app->add(new \Slim\Middleware\MiddlewareSecurity());
$app->add(new \Slim\Middleware\MiddlewareMQManager());
$app->add(new \Slim\Middleware\MiddlewareBLLManager());
$app->add(new \Slim\Middleware\MiddlewareDalManager());
$app->add(new \Slim\Middleware\MiddlewareServiceManager());
$app->add(new \Slim\Middleware\MiddlewareMQManager());
/**
* * OKAN CIRAN
* @since 05-01-2016
*/
$app->get("/pkSessionControl_blLoginLogout/", function () use ($app ) {
$BLL = $app->getBLLManager()->get('blLoginLogoutBLL');
// Filters are called from service manager
//$filterHtmlAdvanced = $app->getServiceManager()->get(\Services\Filter\FilterServiceNames::FILTER_HTML_TAGS_ADVANCED);
// $filterHexadecimalBase = $app->getServiceManager()->get(\Services\Filter\FilterServiceNames::FILTER_HEXADECIMAL_ADVANCED );
//$filterHexadecimalAdvanced = $app->getServiceManager()->get(\Services\Filter\FilterServiceNames::FILTER_HEXADECIMAL_ADVANCED);
// print_r( $app->request()->headers());
$resDataMenu = $BLL->pkSessionControl(array('pk'=>$_GET['pk']));
// print_r($resDataMenu);
$menus = array();
foreach ($resDataMenu as $menu){
$menus[] = array(
"id" => $menu["id"],
"name" => $menu["name"],
"data" => $menu["data"],
"lifetime" => $menu["lifetime"],
"c_date" => $menu["c_date"],
"modified" => $menu["modified"],
"public_key" => $menu["public_key"],
"u_name" => $menu["u_name"],
"u_surname" => $menu["u_surname"],
"username" => $menu["username"],
);
}
$app->response()->header("Content-Type", "application/json");
/*$app->contentType('application/json');
$app->halt(302, '{"error":"Something went wrong"}');
$app->stop();*/
$app->response()->body(json_encode($menus));
});
$app->run();