source: app/Http/Controllers/Dashboard/DepartmentsController.php@ bbcbb57

develop
Last change on this file since bbcbb57 was bbcbb57, checked in by beratkjufliju <kufliju@…>, 3 years ago

bug fixes

  • Property mode set to 100644
File size: 5.9 KB
Line 
1<?php
2
3namespace App\Http\Controllers\Dashboard;
4
5use App\Helpers\Alert;
6use App\Http\Requests\Dashboard\NewDepartmentRequest;
7use App\Http\Requests\Dashboard\UpdateDepartmentRequest;
8use App\Models\Department;
9use App\Models\File;
10use App\Models\User;
11use App\Notifications\NewDepartmentCreated;
12use Carbon\Carbon;
13use App\Http\Controllers\Controller;
14use Illuminate\Support\Facades\Notification;
15use Illuminate\Support\Facades\Storage;
16use Illuminate\Filesystem\Filesystem;
17
18class DepartmentsController extends Controller
19{
20 public function index()
21 {
22 return view("dashboard.departments.index")->with([
23 "departments" => Department::all(),
24 ]);
25 }
26
27 public function create()
28 {
29 return view("dashboard.departments.create");
30 }
31
32 public function store(NewDepartmentRequest $request)
33 {
34 $department = new Department();
35
36 $department->name = $request->name;
37 $department->code = $request->code;
38
39 $location = 'Departments' . DIRECTORY_SEPARATOR . $request->code;
40
41 if(!Storage::disk('uploads')->has($location)){
42 Storage::disk('uploads')->makeDirectory($location);
43
44 }
45 $department->location = $location;
46 $department->user_id = auth()->id();
47
48 $users = User::all();
49
50 $department->save();
51
52 Alert::flash("New Department added successfully");
53
54 return redirect()->route("dashboard.departments.index");
55 }
56
57 public function editShow($id)
58 {
59 return view("dashboard.departments.edit")->with([
60 "department" => Department::findOrFail($id)
61 ]);
62 }
63
64 public function edit(UpdateDepartmentRequest $request, $id)
65 {
66 $department = Department::findOrFail($id);
67
68 $folders = $department->folder;
69 $oldLocation = DIRECTORY_SEPARATOR . 'Departments' . DIRECTORY_SEPARATOR . $department->code;
70
71 $department->name = $request->name;
72 $department->code = $request->code;
73 $department->updated_at = Carbon::now();
74
75 if($department->isDirty('code'))
76 {
77 $location = 'Departments' . DIRECTORY_SEPARATOR . $request->code;
78 if(!Storage::disk('uploads')->has($location)){
79 Storage::disk('uploads')->move($oldLocation, $location);
80 $department->location = $location;
81 }
82
83 foreach ($folders as $folder) {
84 $currArchId = explode('/', $folder->arch_id)[1];
85 $folder->arch_id = $department->code . '/' . $currArchId;
86 $folder->save();
87 foreach($folder->files as $file) {
88 $file->location = $location . DIRECTORY_SEPARATOR . $folder->name . DIRECTORY_SEPARATOR . $file->name;
89 $file->save();
90 }
91 }
92 }
93
94 $department->save();
95
96 Alert::flash("Department edited successfully");
97
98 return redirect()->route("dashboard.departments.index");
99 }
100
101 public function destroy($id)
102 {
103 $department = Department::find($id);
104 //$department->delete();
105 $folders = $department->folder()->count();
106
107 if($folders > 0){
108 Alert::flash($department->name . " has " . $folders . " document/s associated", "error");
109 }
110 else {
111 $department->delete();
112
113 Alert::flash($department->name . " deleted successfully");
114 }
115
116 return redirect()->route("dashboard.departments.index");
117 }
118
119 public function downloadAll()
120 {
121 $zip_file = Storage::disk('uploads')->path('Departments.zip');
122 $zip = new \ZipArchive();
123 $zip->open($zip_file, \ZipArchive::CREATE | \ZipArchive::OVERWRITE);
124
125 $path = Storage::disk('uploads')->path('Departments');
126
127 $files = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path));
128 try {
129 foreach ($files as $file) {
130
131 // We're skipping all subfolders
132 if (!$file->isDir()) {
133 $filePath = $file->getRealPath();
134 // extracting filename with substr/strlen
135 $relativePath = substr($filePath, strlen($path) + 1);
136 $zip->addFile($filePath, $relativePath);
137 }
138 }
139 $zip->close();
140 $headers = array('Content-Type' => 'application/octet-stream');
141 $zip_new_name = Carbon::now()->format('d.m.Y - H:i') . '- Departments.zip';
142 return response()->download($zip_file, $zip_new_name, $headers);
143 }
144
145 catch(\Exception $e){
146 Alert::flash("All departments are empty", "warning");
147 return redirect()->back();
148 }
149 }
150
151 public function downloadDepartment($id)
152 {
153 try {
154 $department = Department::find($id);
155 $zip_file=Storage::disk('uploads')->path('Department.zip');
156 $zip = new \ZipArchive();
157 $zip->open($zip_file, \ZipArchive::CREATE | \ZipArchive::OVERWRITE);
158 $path = Storage::disk('uploads')->path($department->location);
159
160 $files = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path));
161 foreach ($files as $file) {
162
163 // We're skipping all subfolders
164 if (!$file->isDir()) {
165 $filePath = $file->getRealPath();
166 // extracting filename with substr/strlen
167 $relativePath = substr($filePath, strlen($path) + 1);
168 $zip->addFile($filePath, $relativePath);
169 }
170 }
171 $zip->close();
172 $headers = array('Content-Type' => 'application/octet-stream');
173 $zip_new_name = Carbon::now()->format('d.m.Y - H:i') . '- Departments.zip';
174 return response()->download($zip_file, $zip_new_name, $headers);
175 }
176 catch(\Exception $e){
177 Alert::flash("All departments are empty", "warning");
178 return redirect()->back();
179 }
180 }
181}
Note: See TracBrowser for help on using the repository browser.