Completed
Push — master ( 3bb2fe...d33098 )
by Afshin
02:25
created
bootstrap/dependencies.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 /* database connection */
7 7
 
8 8
 
9
-$container['db'] = function ($container) {
9
+$container['db'] = function($container) {
10 10
     $db = $container['settings']['db'];
11 11
     $pdo = new PDO("mysql:host=" . $db['host'] . ";dbname=" . $db['database'],
12 12
         $db['username'], $db['password']);
@@ -18,19 +18,19 @@  discard block
 block discarded – undo
18 18
 //
19 19
 
20 20
 
21
-$container['generalErrorHandler'] = function ($container) {
21
+$container['generalErrorHandler'] = function($container) {
22 22
     return new \Core\Handlers\GeneralErrorHandler($container);
23 23
 };
24 24
 
25 25
 
26 26
 
27 27
 // Service factory for the ORM
28
-$container['validator'] = function () {
28
+$container['validator'] = function() {
29 29
     return new App\Validation\Validator();
30 30
 };
31 31
 
32 32
 
33
-$container['eloquent'] = function ($container) {
33
+$container['eloquent'] = function($container) {
34 34
     $capsule = new \Illuminate\Database\Capsule\Manager;
35 35
     $capsule->addConnection($container['settings']['db']);
36 36
     $capsule->setAsGlobal();
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
 
50 50
 // monolog
51
-$container['logger'] = function ($c) {
51
+$container['logger'] = function($c) {
52 52
     $settings = $c->get('settings')['logger'];
53 53
     $logger = new Monolog\Logger($settings['name']);
54 54
     $logger->pushProcessor(new Monolog\Processor\UidProcessor());
@@ -57,20 +57,20 @@  discard block
 block discarded – undo
57 57
 };
58 58
 
59 59
 // not found handler
60
-$container['notFoundHandler'] = function ($container) {
61
-    return function (\Slim\Http\Request $request, \Slim\Http\Response $response) use ($container) {
60
+$container['notFoundHandler'] = function($container) {
61
+    return function(\Slim\Http\Request $request, \Slim\Http\Response $response) use ($container) {
62 62
         return $container['view']->render($response->withStatus(404), '404');
63 63
     };
64 64
 };
65 65
 
66 66
 // Register Blade View helper
67
-$container['view'] = function ($container) {
67
+$container['view'] = function($container) {
68 68
 
69 69
     $messages = $container->flash->getMessages();
70 70
 
71 71
     $viewSettings = $container['settings']['view'];
72 72
     return new \Slim\Views\Blade(
73
-        [$viewSettings['blade_template_path'].$viewSettings['template']],
73
+        [$viewSettings['blade_template_path'] . $viewSettings['template']],
74 74
         $viewSettings['blade_cache_path'],
75 75
         null,
76 76
         [
@@ -83,13 +83,13 @@  discard block
 block discarded – undo
83 83
 $translator = new \Core\Translator\Translator($container);
84 84
 $translator->init();
85 85
 
86
-$container['translator'] = function () use ($translator) {
86
+$container['translator'] = function() use ($translator) {
87 87
     return $translator;
88 88
 };
89 89
 
90 90
 
91 91
 // Register provider
92
-$container['flash'] = function () {
92
+$container['flash'] = function() {
93 93
     return new \Slim\Flash\Messages();
94 94
 };
95 95
 
@@ -104,14 +104,14 @@  discard block
 block discarded – undo
104 104
 
105 105
 
106 106
 /*Dynamic containers in services*/
107
-$dir = scandir(__APP_ROOT__.'/core/Services/');
107
+$dir = scandir(__APP_ROOT__ . '/core/Services/');
108 108
 $ex_folders = array('..', '.');
109
-$filesInServices =  array_diff($dir,$ex_folders);
109
+$filesInServices = array_diff($dir, $ex_folders);
110 110
 
111
-foreach($filesInServices as $service){
112
-    $content = preg_replace('/.php/','',$service);
113
-    $container[$content] = function () use ($content){
114
-        $class =  '\\Core\\Services\\'.$content ;
111
+foreach ($filesInServices as $service) {
112
+    $content = preg_replace('/.php/', '', $service);
113
+    $container[$content] = function() use ($content){
114
+        $class = '\\Core\\Services\\' . $content;
115 115
         return new $class();
116 116
     };
117 117
 }
Please login to merge, or discard this patch.
bootstrap/app.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <?php
2
-define('__APP_ROOT__',__DIR__ . '/../') ;
2
+define('__APP_ROOT__', __DIR__ . '/../');
3 3
 
4
-require  __APP_ROOT__.'bootstrap/bootstrap.php';
5
-require  __APP_ROOT__.'core/Functions/helpers.php';
6
-require __APP_ROOT__.'vendor/autoload.php';
7
-require __APP_ROOT__.'config/settings.php';
4
+require  __APP_ROOT__ . 'bootstrap/bootstrap.php';
5
+require  __APP_ROOT__ . 'core/Functions/helpers.php';
6
+require __APP_ROOT__ . 'vendor/autoload.php';
7
+require __APP_ROOT__ . 'config/settings.php';
8 8
 
9 9
 
10 10
 
@@ -12,20 +12,20 @@  discard block
 block discarded – undo
12 12
 
13 13
 use SlimFacades\Facade;
14 14
 // get container app
15
-require __APP_ROOT__.'bootstrap/dependencies.php';
16
-require  __APP_ROOT__.'bootstrap/routes.php';
15
+require __APP_ROOT__ . 'bootstrap/dependencies.php';
16
+require  __APP_ROOT__ . 'bootstrap/routes.php';
17 17
 
18
-if(php_sapi_name() != 'cli') {
18
+if (php_sapi_name() != 'cli') {
19 19
     $settings['tracy']['path'] = '';
20
-    if($app->getContainer() instanceof Psr\Container\ContainerInterface){
20
+    if ($app->getContainer() instanceof Psr\Container\ContainerInterface) {
21 21
         $settings = $app->getContainer()->settings;
22
-        if($settings['debug'] == true){
22
+        if ($settings['debug'] == true) {
23 23
             Tracy\Debugger::enable(Tracy\Debugger::DEVELOPMENT, $settings['tracy']['path']);
24 24
         }
25 25
         Facade::setFacadeApplication($app);
26 26
     }
27 27
 
28
-    require  __APP_ROOT__.'bootstrap/middlewares.php';
28
+    require  __APP_ROOT__ . 'bootstrap/middlewares.php';
29 29
 
30 30
     $app->run();
31 31
 
Please login to merge, or discard this patch.
core/Helpers/Hash.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,14 +8,14 @@  discard block
 block discarded – undo
8 8
 
9 9
 namespace Core\Helpers;
10 10
 
11
-class Hash{
11
+class Hash {
12 12
     /**
13 13
      * Receives a string password and hashes it.
14 14
      *
15 15
      * @param string $password
16 16
      * @return string $hash
17 17
      */
18
-    public static function hash($password){
18
+    public static function hash($password) {
19 19
 //        return (string)password_hash($password, PASSWORD_DEFAULT);
20 20
         return sha1(md5($password));
21 21
     }
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
      * @param string $hash
28 28
      * @return boolean If the hash was generated from the password
29 29
      */
30
-    public static function checkHash($string, $hash){
31
-        if( password_verify( $string, $hash ) ){
30
+    public static function checkHash($string, $hash) {
31
+        if (password_verify($string, $hash)) {
32 32
             return true;
33 33
         }
34 34
         return false;
Please login to merge, or discard this patch.
core/Services/AuthService.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         return isset($_SESSION['user']['user_id']);
26 26
     }
27 27
 
28
-    public function attempt(string $loginField,string $password)
28
+    public function attempt(string $loginField, string $password)
29 29
     {
30 30
         $user = UserDataAccess::getUserLoginField($loginField);
31 31
         if (!$user) {
@@ -35,17 +35,17 @@  discard block
 block discarded – undo
35 35
             ];
36 36
         }
37 37
         $setting = Config::get('settings.auth');
38
-        if($setting['2step']){
38
+        if ($setting['2step']) {
39 39
             $this->twoStepAuth();
40
-        }else{
41
-            if ($this->checkPass($password,$user->password)) {
40
+        }else {
41
+            if ($this->checkPass($password, $user->password)) {
42 42
                 $_SESSION['user']['user_id'] = $user->id;
43 43
                 $_SESSION['user']['mobile'] = $user->mobile;
44 44
                 return [
45 45
                     'type'=>'success',
46 46
                     'message'=> 'Logined',
47 47
                 ];
48
-            }else{
48
+            }else {
49 49
                 return [
50 50
                     'type'=>'error',
51 51
                     'message'=> 'password mismatch',
@@ -60,9 +60,9 @@  discard block
 block discarded – undo
60 60
 
61 61
 
62 62
 
63
-    public function checkPass($password,$database_pass)
63
+    public function checkPass($password, $database_pass)
64 64
     {
65
-        if($database_pass == $password){
65
+        if ($database_pass == $password) {
66 66
             return true;
67 67
         }
68 68
         return false;
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         $setting = Config::get('settings.auth');
38 38
         if($setting['2step']){
39 39
             $this->twoStepAuth();
40
-        }else{
40
+        } else{
41 41
             if ($this->checkPass($password,$user->password)) {
42 42
                 $_SESSION['user']['user_id'] = $user->id;
43 43
                 $_SESSION['user']['mobile'] = $user->mobile;
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
                     'type'=>'success',
46 46
                     'message'=> 'Logined',
47 47
                 ];
48
-            }else{
48
+            } else{
49 49
                 return [
50 50
                     'type'=>'error',
51 51
                     'message'=> 'password mismatch',
Please login to merge, or discard this patch.
migrations/20171130091220_Add_Password_To_Users_Table_Migration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     {
13 13
         Capsule::schema()->table('users', function($table)
14 14
         {
15
-            $table->string('password',128);
15
+            $table->string('password', 128);
16 16
         });
17 17
     }
18 18
 
Please login to merge, or discard this patch.