Completed
Pull Request — master (#96)
by Brandon
02:26
created
app/Http/Controllers/SiteController.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      * Store a newly created resource in storage.
42 42
      *
43 43
      * @param  \Illuminate\Http\Request  $request
44
-     * @return \Illuminate\Http\Response
44
+     * @return \Illuminate\Http\RedirectResponse
45 45
      */
46 46
     public function store(Request $request)
47 47
     {
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      *
88 88
      * @param  \Illuminate\Http\Request  $request
89 89
      * @param  Site  $site
90
-     * @return \Illuminate\Http\Response
90
+     * @return \Illuminate\Http\RedirectResponse
91 91
      */
92 92
     public function update(Request $request, Site $site)
93 93
     {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      * Remove the specified resource from storage.
106 106
      *
107 107
      * @param  int  $id
108
-     * @return \Illuminate\Http\Response
108
+     * @return \Illuminate\Http\RedirectResponse
109 109
      */
110 110
     public function destroy($id)
111 111
     {
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      * Get the locations belonging to the given site
119 119
      *
120 120
      * @param  Site $site
121
-     * @return Illuminate\Database\Eloquent\Builder[]|\Illuminate\Database\Eloquent\Collection
121
+     * @return \Illuminate\Http\JsonResponse
122 122
      */
123 123
     public function locations(Site $site)
124 124
     {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             'name' => 'required|min:2|max:75|regex:#(^[a-zA-Z0-9])([\w ]*)(\w$)#|unique:sites,name',
50 50
         ]);
51 51
         
52
-        $site = Site::create(['name' => $request->name]);
52
+        $site = Site::create([ 'name' => $request->name ]);
53 53
         
54 54
         return redirect()->route('site.show', $site->id)
55 55
             ->with('success', 'Site created successfully');
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
             'name' => 'required|min:2|max:75|regex:#(^[a-zA-Z0-9])([\w ]*)(\w$)#|unique:sites,name,'.$site->id,
96 96
         ]);
97 97
         
98
-        $site->update(['name' => $request->name]);
98
+        $site->update([ 'name' => $request->name ]);
99 99
         
100 100
         return redirect()->route('site.show', $site->id)
101 101
             ->with('success', 'Site updated successfully');
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     {
112 112
         Site::findOrFail($id)->delete();
113 113
         return redirect()->route('site.index')
114
-            ->with('success','Site deleted successfully');
114
+            ->with('success', 'Site deleted successfully');
115 115
     }
116 116
     
117 117
     /**
Please login to merge, or discard this patch.
app/Http/Requests/EditDevice.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Requests;
4 4
 
5 5
 use Illuminate\Foundation\Http\FormRequest;
6
-use App\Http\Requests\Request;
7 6
 use Illuminate\Support\Facades\Auth;
8 7
 
9 8
 class EditDevice extends FormRequest
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,19 +46,19 @@
 block discarded – undo
46 46
     {
47 47
         $validator = parent::getValidatorInstance();
48 48
     
49
-        $validator->sometimes('site_id', 'bail|required|integer|digits_between:1,10|exists:sites,id', function ($input) {
49
+        $validator->sometimes('site_id', 'bail|required|integer|digits_between:1,10|exists:sites,id', function($input) {
50 50
             return !$input->new_site_name && $input->site_id;
51 51
         });
52 52
     
53
-        $validator->sometimes('location_id', 'bail|required|integer|digits_between:1,10|exists:locations,id', function ($input) {
53
+        $validator->sometimes('location_id', 'bail|required|integer|digits_between:1,10|exists:locations,id', function($input) {
54 54
             return !$input->new_location_name && $input->location_id;
55 55
         });
56 56
     
57
-        $validator->sometimes('new_site_name', 'bail|required|string|max:75|unique:sites,name', function ($input) {
57
+        $validator->sometimes('new_site_name', 'bail|required|string|max:75|unique:sites,name', function($input) {
58 58
             return !$input->site_id;
59 59
         });
60 60
     
61
-        $validator->sometimes('new_location_name', 'bail|required|string|max:75|unique:locations,name', function ($input) {
61
+        $validator->sometimes('new_location_name', 'bail|required|string|max:75|unique:locations,name', function($input) {
62 62
             return !$input->location_id;
63 63
         });
64 64
         
Please login to merge, or discard this patch.
app/Http/Controllers/DeviceController.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $sites = Site::select('id', 'name')->orderByRaw("id = ? DESC", $site_id)
78 78
             ->orderBy('name', 'ASC')->get();
79 79
         //Get all locations for the selected site with the selected location first
80
-        $locations = Location::select('id', 'name')->where('site_id', '=', $sites[0]->id ?? 0)
80
+        $locations = Location::select('id', 'name')->where('site_id', '=', $sites[ 0 ]->id ?? 0)
81 81
             ->orderByRaw("id = ? DESC", $location_id)->orderBy('name', 'ASC')->get();
82 82
         
83 83
         return view('device.edit', [ 'device' => $device, 'locations' => $locations, 'sites' => $sites ]);
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         if (!empty($request->input('new_site_name')))
99 99
         {
100 100
             //Create a new site
101
-            $site = Site::create(['name' => $request->input('new_site_name')]);
101
+            $site = Site::create([ 'name' => $request->input('new_site_name') ]);
102 102
             $site_id = $site->id;
103 103
         }
104 104
         else
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         if (!empty($request->input('new_location_name')))
109 109
         {
110 110
             //Create a new location
111
-            $location = Location::create(['name' => $request->input('new_location_name'), 'site_id' => $site_id]);
111
+            $location = Location::create([ 'name' => $request->input('new_location_name'), 'site_id' => $site_id ]);
112 112
             $location_id = $location->id;
113 113
         }
114 114
         else
@@ -135,9 +135,9 @@  discard block
 block discarded – undo
135 135
             if ($request->command === 'unlock')
136 136
             {
137 137
                 if ($device->isDuringScheduleOpen())
138
-                    $command =  'open';
138
+                    $command = 'open';
139 139
                 else
140
-                    $command =  'close';
140
+                    $command = 'close';
141 141
             }
142 142
             $device->cover_command = $command;
143 143
         }
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         $device->save();
146 146
     
147 147
         if (\Request::ajax())
148
-            return response()->json(['success' => 'Device updated successfully']);
148
+            return response()->json([ 'success' => 'Device updated successfully' ]);
149 149
         else
150 150
             return redirect()->route('device.show', $id)
151 151
                 ->with('success', 'Device updated successfully');
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
         }
178 178
 
179 179
         return redirect()->route('device.index')
180
-            ->with('success','Device deleted successfully');
180
+            ->with('success', 'Device deleted successfully');
181 181
     }
182 182
     
183 183
     /**
@@ -193,6 +193,6 @@  discard block
 block discarded – undo
193 193
         $device->restore();
194 194
         
195 195
         return redirect()->route('device.show', $device->id)
196
-            ->with('success','Device restored successfully');
196
+            ->with('success', 'Device restored successfully');
197 197
     }
198 198
 }
Please login to merge, or discard this patch.
Braces   +18 added lines, -16 removed lines patch added patch discarded remove patch
@@ -100,9 +100,9 @@  discard block
 block discarded – undo
100 100
             //Create a new site
101 101
             $site = Site::create(['name' => $request->input('new_site_name')]);
102 102
             $site_id = $site->id;
103
+        } else {
104
+                    $site_id = $request->input('site_id');
103 105
         }
104
-        else
105
-            $site_id = $request->input('site_id');
106 106
         
107 107
         //Get the location id of the old or newly created location
108 108
         if (!empty($request->input('new_location_name')))
@@ -110,9 +110,9 @@  discard block
 block discarded – undo
110 110
             //Create a new location
111 111
             $location = Location::create(['name' => $request->input('new_location_name'), 'site_id' => $site_id]);
112 112
             $location_id = $location->id;
113
+        } else {
114
+                    $location_id = $request->input('location_id');
113 115
         }
114
-        else
115
-            $location_id = $request->input('location_id');
116 116
         
117 117
         //Update the device
118 118
         $device->location_id = $location_id;
@@ -126,29 +126,32 @@  discard block
 block discarded – undo
126 126
         if ($request->input('command') != null)
127 127
         {
128 128
             //If device is currently opening, closing or in an error state don't update command
129
-            if (!$device->isReadyForCommand())
130
-                return response()->json("Device is currently in use.", 403);
129
+            if (!$device->isReadyForCommand()) {
130
+                            return response()->json("Device is currently in use.", 403);
131
+            }
131 132
     
132 133
             $command = $request->input('command');
133 134
             
134 135
             //If command is to unlock the device then check if the device should be open or closed based on the schedule
135 136
             if ($request->command === 'unlock')
136 137
             {
137
-                if ($device->isDuringScheduleOpen())
138
-                    $command =  'open';
139
-                else
140
-                    $command =  'close';
138
+                if ($device->isDuringScheduleOpen()) {
139
+                                    $command =  'open';
140
+                } else {
141
+                                    $command =  'close';
142
+                }
141 143
             }
142 144
             $device->cover_command = $command;
143 145
         }
144 146
         
145 147
         $device->save();
146 148
     
147
-        if (\Request::ajax())
148
-            return response()->json(['success' => 'Device updated successfully']);
149
-        else
150
-            return redirect()->route('device.show', $id)
149
+        if (\Request::ajax()) {
150
+                    return response()->json(['success' => 'Device updated successfully']);
151
+        } else {
152
+                    return redirect()->route('device.show', $id)
151 153
                 ->with('success', 'Device updated successfully');
154
+        }
152 155
     }
153 156
 
154 157
     /**
@@ -165,8 +168,7 @@  discard block
 block discarded – undo
165 168
         {
166 169
             //If the device was already deleted then permanently delete it
167 170
             $device->forceDelete($device->id);
168
-        }
169
-        else
171
+        } else
170 172
         {
171 173
             //Remove the location from the device
172 174
             $device->location_id = null;
Please login to merge, or discard this patch.
app/Http/Controllers/DashboardController.php 2 patches
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -41,13 +41,13 @@  discard block
 block discarded – undo
41 41
             ->get();
42 42
         //Get all locations for the selected site with the selected location first
43 43
         $locations = Location::select('id', 'name', 'site_id')
44
-            ->where('site_id', '=', $sites[0]->id ?? 0)
44
+            ->where('site_id', '=', $sites[ 0 ]->id ?? 0)
45 45
             ->orderByRaw("id = ? DESC", $location_id)
46 46
             ->orderBy('name', 'ASC')
47 47
             ->get();
48 48
         //Get all devices for the selected location
49 49
         $devices = Device::publicDashData()
50
-            ->where('location_id', '=', $locations[0]->id ?? 0)
50
+            ->where('location_id', '=', $locations[ 0 ]->id ?? 0)
51 51
             ->orderBy('name', 'ASC')
52 52
             ->limit(1)
53 53
             ->get();
@@ -56,10 +56,10 @@  discard block
 block discarded – undo
56 56
         $active_device = $devices->where('id', '=', $device_id)->first();
57 57
         //Set the active device to the first device in $devices if it is not empty and the original active device wasn't found
58 58
         if (!$devices->isEmpty() && $active_device == null)
59
-            $active_device = $devices[0];
59
+            $active_device = $devices[ 0 ];
60 60
     
61 61
         //Store the active site, location, and device in a collection
62
-        $active_data = collect([ 'device' => $active_device, 'location' => $locations[0] ?? null, 'site' => $sites[0] ?? null ]);
62
+        $active_data = collect([ 'device' => $active_device, 'location' => $locations[ 0 ] ?? null, 'site' => $sites[ 0 ] ?? null ]);
63 63
         
64 64
         return view('dashboard.index', [ 'active_data' => $active_data, 'devices' => $devices,
65 65
             'locations' => $locations, 'sites' => $sites ]);
@@ -102,37 +102,37 @@  discard block
 block discarded – undo
102 102
             ->get();
103 103
         //Get all locations for the selected site with the selected location first
104 104
         $locations = Location::select('id', 'name', 'site_id')
105
-            ->where('site_id', '=', $sites[0]->id ?? 0)
105
+            ->where('site_id', '=', $sites[ 0 ]->id ?? 0)
106 106
             ->orderByRaw("id = ? DESC", $location_id)
107 107
             ->orderBy('name', 'ASC')
108 108
             ->get();
109 109
         //Get all devices for the selected location
110 110
         $devices = Device::publicDashData()
111
-            ->where('location_id', '=', $locations[0]->id ?? 0)
111
+            ->where('location_id', '=', $locations[ 0 ]->id ?? 0)
112 112
             ->orderBy('name', 'ASC')
113 113
             ->limit($limit)
114 114
             ->offset($offset * $limit)
115 115
             ->get();
116 116
         //Get the total device count for the given location
117
-        $deviceCount = Device::where('location_id', '=', $locations[0]->id ?? 0)->count();
117
+        $deviceCount = Device::where('location_id', '=', $locations[ 0 ]->id ?? 0)->count();
118 118
     
119 119
         //Get the active device
120 120
         $active_device = $devices->where('id', $device_id)->first();
121 121
         //Set the active device to the first device in $devices if it is not empty and the original active device wasn't found
122 122
         if (!$devices->isEmpty() && $active_device == null)
123
-            $active_device = $devices[0];
123
+            $active_device = $devices[ 0 ];
124 124
         
125 125
         //Store the active site, location, and device in a collection
126
-        $active_data = collect(['device' => $active_device, 'location' => $locations[0] ?? null, 'site' => $sites[0] ?? null]);
126
+        $active_data = collect([ 'device' => $active_device, 'location' => $locations[ 0 ] ?? null, 'site' => $sites[ 0 ] ?? null ]);
127 127
         
128 128
         //Get the total amount of pages for pagination
129 129
         $page_count = ceil($deviceCount / $limit) - 1;
130 130
         
131 131
         //Store pagination data
132
-        $pag_data = collect(['offset' => $offset, 'page_count' => $page_count]);
132
+        $pag_data = collect([ 'offset' => $offset, 'page_count' => $page_count ]);
133 133
         
134 134
         return response()->json([ 'active_data' => $active_data, 'devices' => $devices, 'locations' => $locations,
135
-            'sites' => $sites, 'pag_data' => $pag_data]);
135
+            'sites' => $sites, 'pag_data' => $pag_data ]);
136 136
     }
137 137
     
138 138
     /**
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,8 +55,9 @@  discard block
 block discarded – undo
55 55
         //Get the active device
56 56
         $active_device = $devices->where('id', '=', $device_id)->first();
57 57
         //Set the active device to the first device in $devices if it is not empty and the original active device wasn't found
58
-        if (!$devices->isEmpty() && $active_device == null)
59
-            $active_device = $devices[0];
58
+        if (!$devices->isEmpty() && $active_device == null) {
59
+                    $active_device = $devices[0];
60
+        }
60 61
     
61 62
         //Store the active site, location, and device in a collection
62 63
         $active_data = collect([ 'device' => $active_device, 'location' => $locations[0] ?? null, 'site' => $sites[0] ?? null ]);
@@ -119,8 +120,9 @@  discard block
 block discarded – undo
119 120
         //Get the active device
120 121
         $active_device = $devices->where('id', $device_id)->first();
121 122
         //Set the active device to the first device in $devices if it is not empty and the original active device wasn't found
122
-        if (!$devices->isEmpty() && $active_device == null)
123
-            $active_device = $devices[0];
123
+        if (!$devices->isEmpty() && $active_device == null) {
124
+                    $active_device = $devices[0];
125
+        }
124 126
         
125 127
         //Store the active site, location, and device in a collection
126 128
         $active_data = collect(['device' => $active_device, 'location' => $locations[0] ?? null, 'site' => $sites[0] ?? null]);
Please login to merge, or discard this patch.
app/Device.php 1 patch
Braces   +16 added lines, -12 removed lines patch added patch discarded remove patch
@@ -107,8 +107,9 @@  discard block
 block discarded – undo
107 107
         $time = new Carbon($value, 'UTC');
108 108
         
109 109
         //If the user is logged in then use there preferred timezone
110
-        if (Auth::check())
111
-            $time = $time->setTimezone(Auth::user()->timezone);
110
+        if (Auth::check()) {
111
+                    $time = $time->setTimezone(Auth::user()->timezone);
112
+        }
112 113
 
113 114
         return $time->format('H:i');
114 115
     }
@@ -126,8 +127,9 @@  discard block
 block discarded – undo
126 127
         $time = new Carbon($value, 'UTC');
127 128
     
128 129
         //If the user is logged in then use there preferred timezone
129
-        if (Auth::check())
130
-            $time = $time->setTimezone(Auth::user()->timezone);
130
+        if (Auth::check()) {
131
+                    $time = $time->setTimezone(Auth::user()->timezone);
132
+        }
131 133
         
132 134
         return $time->format('H:i');
133 135
     }
@@ -147,9 +149,9 @@  discard block
 block discarded – undo
147 149
         {
148 150
             $time = new Carbon($value, Auth::user()->timezone);
149 151
             $time = $time->setTimezone('UTC');
152
+        } else {
153
+                    $time = new Carbon($value, 'UTC');
150 154
         }
151
-        else
152
-            $time = new Carbon($value, 'UTC');
153 155
         
154 156
         $this->attributes['open_time'] = $time->format('H:i:s');
155 157
     }
@@ -169,9 +171,9 @@  discard block
 block discarded – undo
169 171
         {
170 172
             $time = new Carbon($value, Auth::user()->timezone);
171 173
             $time = $time->setTimezone('UTC');
174
+        } else {
175
+                    $time = new Carbon($value, 'UTC');
172 176
         }
173
-        else
174
-            $time = new Carbon($value, 'UTC');
175 177
         
176 178
         $this->attributes['close_time'] = $time->format('H:i:s');
177 179
     }
@@ -267,8 +269,9 @@  discard block
 block discarded – undo
267 269
     {
268 270
         $isReady = false;
269 271
         
270
-        if ($this->cover_status == 'open' || $this->cover_status == 'closed' || $this->cover_status == 'locked')
271
-            $isReady = true;
272
+        if ($this->cover_status == 'open' || $this->cover_status == 'closed' || $this->cover_status == 'locked') {
273
+                    $isReady = true;
274
+        }
272 275
         
273 276
         return $isReady;
274 277
     }
@@ -289,8 +292,9 @@  discard block
 block discarded – undo
289 292
         $time_now = Carbon::now($timezone);
290 293
     
291 294
         //Check if the current time is during the open schedule or not
292
-        if ($time_now->gt($open_time) && $time_now->lt($close_time))
293
-            $isOpenHours = true;
295
+        if ($time_now->gt($open_time) && $time_now->lt($close_time)) {
296
+                    $isOpenHours = true;
297
+        }
294 298
         
295 299
         return $isOpenHours;
296 300
     }
Please login to merge, or discard this patch.