@@ -2,8 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace App\Http\Controllers; |
4 | 4 | |
5 | -use Illuminate\Http\Request; |
|
6 | - |
|
7 | 5 | class HomeController extends Controller |
8 | 6 | { |
9 | 7 | /** |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Bus\Queueable; |
6 | 6 | use Illuminate\Notifications\Notification; |
7 | -use Illuminate\Contracts\Queue\ShouldQueue; |
|
8 | 7 | use Illuminate\Notifications\Messages\NexmoMessage; |
9 | 8 | |
10 | 9 | class InvoicePaid extends Notification |
@@ -2,9 +2,7 @@ |
||
2 | 2 | |
3 | 3 | namespace App\Http\Controllers; |
4 | 4 | |
5 | -use Illuminate\Http\Request; |
|
6 | 5 | use Intervention\Image\Facades\Image as Image; |
7 | -use Illuminate\Support\Facades\Cache; |
|
8 | 6 | use Illuminate\Support\Facades\Storage; |
9 | 7 | |
10 | 8 | class ImageController extends Controller |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | if (Storage::disk('private')->exists('deviceimage/'.$device_id)) { |
31 | 31 | $image = Image::make(Storage::disk('private')->get('deviceimage/'.$device_id)); |
32 | 32 | } else { |
33 | - $image = Image::make(public_path() . '/img/video_not_found.jpg'); |
|
33 | + $image = Image::make(public_path().'/img/video_not_found.jpg'); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | return $image->response(); |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public function store($device_id, $binaryData) |
47 | 47 | { |
48 | - $storagePath = storage_path('app/private/deviceimage/') . $device_id; |
|
48 | + $storagePath = storage_path('app/private/deviceimage/').$device_id; |
|
49 | 49 | $image = Image::make($binaryData); |
50 | 50 | $image->save($storagePath, 75); |
51 | 51 | } |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Bus\Queueable; |
6 | 6 | use Illuminate\Notifications\Notification; |
7 | -use Illuminate\Contracts\Queue\ShouldQueue; |
|
8 | 7 | use Illuminate\Notifications\Messages\NexmoMessage; |
9 | 8 | |
10 | 9 | class DeviceRegister extends Notification |
@@ -3,10 +3,8 @@ |
||
3 | 3 | namespace App\Http\Controllers; |
4 | 4 | |
5 | 5 | use App\Http\Requests\EditDevice; |
6 | -use Validator; |
|
7 | 6 | use Illuminate\Http\Request; |
8 | 7 | use App\DataTables\DevicesDataTable; |
9 | -use Illuminate\Support\Facades\Route; |
|
10 | 8 | use App\Device; |
11 | 9 | use App\Site; |
12 | 10 | use App\Location; |
@@ -100,9 +100,9 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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; |
@@ -55,10 +55,10 @@ discard block |
||
55 | 55 | { |
56 | 56 | $device = Device::findOrFail($id); |
57 | 57 | |
58 | - $charts = []; |
|
58 | + $charts = [ ]; |
|
59 | 59 | foreach ($device->sensors as $sensor) { |
60 | 60 | $data = $sensor->last_week_daily_avg_data; |
61 | - $charts[$sensor->id] = Charts::create('line', 'highcharts') |
|
61 | + $charts[ $sensor->id ] = Charts::create('line', 'highcharts') |
|
62 | 62 | ->title($sensor->name) |
63 | 63 | ->elementLabel($sensor->type) |
64 | 64 | ->labels($data->pluck('date')) |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | $sites = Site::select('id', 'name')->orderByRaw("id = ? DESC", $site_id) |
91 | 91 | ->orderBy('name', 'ASC')->get(); |
92 | 92 | //Get all locations for the selected site with the selected location first |
93 | - $locations = Location::select('id', 'name')->where('site_id', '=', $sites[0]->id ?? 0) |
|
93 | + $locations = Location::select('id', 'name')->where('site_id', '=', $sites[ 0 ]->id ?? 0) |
|
94 | 94 | ->orderByRaw("id = ? DESC", $location_id)->orderBy('name', 'ASC')->get(); |
95 | 95 | |
96 | 96 | return view('device.edit', [ 'device' => $device, 'locations' => $locations, 'sites' => $sites ]); |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | if (!empty($request->input('new_site_name'))) |
112 | 112 | { |
113 | 113 | //Create a new site |
114 | - $site = Site::create(['name' => $request->input('new_site_name')]); |
|
114 | + $site = Site::create([ 'name' => $request->input('new_site_name') ]); |
|
115 | 115 | $site_id = $site->id; |
116 | 116 | } |
117 | 117 | else |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | if (!empty($request->input('new_location_name'))) |
122 | 122 | { |
123 | 123 | //Create a new location |
124 | - $location = Location::create(['name' => $request->input('new_location_name'), 'site_id' => $site_id]); |
|
124 | + $location = Location::create([ 'name' => $request->input('new_location_name'), 'site_id' => $site_id ]); |
|
125 | 125 | $location_id = $location->id; |
126 | 126 | } |
127 | 127 | else |
@@ -148,9 +148,9 @@ discard block |
||
148 | 148 | if ($request->command === 'unlock') |
149 | 149 | { |
150 | 150 | if ($device->isDuringScheduleOpen()) |
151 | - $command = 'open'; |
|
151 | + $command = 'open'; |
|
152 | 152 | else |
153 | - $command = 'close'; |
|
153 | + $command = 'close'; |
|
154 | 154 | } |
155 | 155 | $device->cover_command = $command; |
156 | 156 | } |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | $device->save(); |
159 | 159 | |
160 | 160 | if (\Request::ajax()) |
161 | - return response()->json(['success' => 'Device updated successfully']); |
|
161 | + return response()->json([ 'success' => 'Device updated successfully' ]); |
|
162 | 162 | else |
163 | 163 | return redirect()->route('device.show', $id) |
164 | 164 | ->with('success', 'Device updated successfully'); |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | } |
191 | 191 | |
192 | 192 | return redirect()->route('device.index') |
193 | - ->with('success','Device deleted successfully'); |
|
193 | + ->with('success', 'Device deleted successfully'); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | /** |
@@ -206,6 +206,6 @@ discard block |
||
206 | 206 | $device->restore(); |
207 | 207 | |
208 | 208 | return redirect()->route('device.show', $device->id) |
209 | - ->with('success','Device restored successfully'); |
|
209 | + ->with('success', 'Device restored successfully'); |
|
210 | 210 | } |
211 | 211 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | /** |
24 | 24 | * Display index page and process dataTable ajax request. |
25 | 25 | * |
26 | - * @param \App\DataTables\UsersDataTable $dataTable |
|
26 | + * @param ActivityLogDataTable $dataTable |
|
27 | 27 | * @return \Illuminate\Http\JsonResponse|\Illuminate\View\View |
28 | 28 | */ |
29 | 29 | public function index(ActivityLogDataTable $dataTable) |
@@ -2,11 +2,8 @@ |
||
2 | 2 | |
3 | 3 | namespace App\Http\Controllers; |
4 | 4 | |
5 | -use Validator; |
|
6 | -use Illuminate\Http\Request; |
|
7 | 5 | use App\Http\Controllers\Controller; |
8 | 6 | use App\DataTables\ActivityLogDataTable; |
9 | -use App\User; |
|
10 | 7 | |
11 | 8 | class ActivityLogController extends Controller |
12 | 9 | { |
@@ -24,7 +24,7 @@ |
||
24 | 24 | * |
25 | 25 | * @var array |
26 | 26 | */ |
27 | - protected static $ignoreChangedAttributes = ['updated_at']; |
|
27 | + protected static $ignoreChangedAttributes = [ 'updated_at' ]; |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * The attributes to log in the Activity Log |
@@ -24,7 +24,7 @@ |
||
24 | 24 | * |
25 | 25 | * @var array |
26 | 26 | */ |
27 | - protected static $ignoreChangedAttributes = ['updated_at']; |
|
27 | + protected static $ignoreChangedAttributes = [ 'updated_at' ]; |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * The attributes to log in the Activity Log |
@@ -24,7 +24,7 @@ |
||
24 | 24 | * |
25 | 25 | * @var array |
26 | 26 | */ |
27 | - protected static $ignoreChangedAttributes = ['updated_at']; |
|
27 | + protected static $ignoreChangedAttributes = [ 'updated_at' ]; |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * The attributes to log in the Activity Log |