forked from kuisatz/slim_okulsis_v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hstrylogin.php
66 lines (50 loc) · 1.8 KB
/
hstrylogin.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
<?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 2.10.2015
*/
$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 08-03-2016
*/
$app->get("/pkInsert_hstryLogin/", function () use ($app ) {
$BLL = $app->getBLLManager()->get('hstryLoginBLL');
$headerParams = $app->request()->headers();
$vPk = '';
if (isset($headerParams['X-Public'])) {
$vPk = trim($headerParams['X-Public']);
}
$resDataInsert = $BLL->insert(array(
'pk' => $vPk));
$app->response()->header("Content-Type", "application/json");
$app->response()->body(json_encode($resDataInsert));
});
$app->run();