-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathController.php
350 lines (285 loc) · 12.5 KB
/
Controller.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
<?php
namespace App\Http\Controllers;
use App\Models\User;
use App\Models\UserNote;
use App\Models\UserPaymentInfo;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Validator;
/**
* Class CRUDController
* @group CRUD Management
* APIs for managing CRUD
* Feel Free To Visit https://navjotsinghprince.com
*/
class CRUDController extends Controller
{
/**
* CREATE
* This will be used to create the data on the database 🙂
* @bodyParam email string required The email of the User. Example: [email protected]
* @unauthenticated
*/
public function CREATE(Request $request)
{
$validator = validator::make($request->all(), [
'name' => 'required',
'email' => 'required',
'password' => 'required',
]);
if ($validator->fails()) {
$message = $validator->errors()->first();
return $this->validationFailed($message, "all fields are required");
}
DB::beginTransaction();
try {
DB::commit();
return $this->actionSuccess("success", "");
} catch (\Exception $e) {
DB::rollBack();
return $this->actionFailure("An error occured => {$e->getMessage()}");
}
#Create Records With All Request Parameters
$data = $request->input();
$created = User::create($data);
if ($created) {
return $this->actionSuccess("success");
} else {
return $this->actionfailure("Failed, Could not created");
}
#Record Create With Custom Array
$data = [
'firstname' => $request->firstname,
'lastname' => $request->lastname,
'address' => $request->address,
'mobile' => $request->mobile,
];
$created = User::create($data);
if ($created) {
return $this->actionSuccess("success");
}
}
/**
* UPDATE
* This will be used to update the data on the database 🙂
*/
public function UPDATE(Request $request)
{
#Single Column Update
$updated = User::where('id', $request->id)->update(['name' => $request->name]);
#Multiple Column Array
$updated = User::where('id', $request->id)->update(['name' => $request->name, 'phone' => $request->phone_number]);
#Update Multiple Nested Table Records //Get Last Inserted ID $result1->id
DB::beginTransaction();
try {
$record = [
'firstname' => $request->firstname,
'lastname' => $request->lastname,
'address' => $request->address,
'mobile' => $request->mobile,
];
$result1 = User::where('id', $request->id)->update($record);
$userpaymentinfo = [
'credit_card' => $request->credit_card,
'expiration' => $request->expiration,
'cvv' => $request->cvv,
];
$result2 = UserPaymentInfo::where('user_id', '=', $request->id)->update($userpaymentinfo);
$Data = User::where('id', $request->id)->with('payment')->first(); //also fetch and return
return $this->actionSuccess("User Information Updated", $Data);
DB::commit();
return $this->actionSuccess("success", "");
} catch (\Exception $e) {
DB::rollBack();
return $this->actionFailure("An error occured => {$e->getMessage()}");
}
#Enable and disable user
$query = User::query();
$query->where('id', $request->user_id);
$user = $query->first();
$query->update(['status' => !$user->status]);
return $this->actionSuccess('success', []);
}
/**
* GET,FETCH,READ
* This will be used to get , fetch , read the data on the database 🙂
*/
public function GET_FETCH_READ(Request $request)
{
//(TODO::as a key as value is pending)
$RowsPerPage = 30;
#Single User Record
$User = User::where('id', $request->user_id)->first();
if ($User->isEmpty()) {
return $this->notFound("User Not Found", $User);
}
#All Normal Users Records
#$User = User::all();
$User = User::orderBy('id', 'desc')->paginate($RowsPerPage); //with paginate
if ($User->isEmpty()) {
return $this->notFound("No Users Found");
}
#Single Column Value
$UsedCoins = UserCoins::where('user_id', $request->user_id)->pluck('used_coins')->first();
#Fetch Records With Selected Columns
$result = Language::select('is_default', 'file_name')->where('id', $request->lang_id)->get();
#Multiple Where Conditions Used For Fetch Records
$reports = ReportUser::where([['report_id', $request->report_id], ['status', '1']])->get();
#Distinct((Different Values) Records With Count
$user_report = ReportUser::distinct('report_id')->count('report_id');
#Unique Single Report_Id Of User (Return only unique reports) (TODO::update this )
$reports = ReportUser::select('report_id')->pluck('report_id')->unique();
$data = array();
//How many reports of single user
foreach ($reports as $key => $value) {
$d = ReportUser::where('reportee_id', $value)->with('reportedTo:id,name,username')->first();
array_push($data, $d);
}
//Pass Variable To Query
DB::table('users')->where(function ($query) use ($activated) {
$query->where('activated', '=', $activated);
})->get();
#Use Function With Query (Return Warnings Of User)
$warningUser = User::whereIn('id', $warningUserID)->with('profile')
->withCount(['warning' => function ($q) {
$q->where('warning', '1');
}])->get();
#Single Column With Multiple Where Conditions (Check User Phone Not Empty Or Null)
$user = Profile::where('user_id', $request->user_id)
->where(function ($query) {
$query->where('phone', '!=', "")
->orWhereNull('phone');
})
->first();
#Fetch All Only Trashed Records
$books = Book::onlyTrashed()->with('payment', 'order')
->orderBy('created_at', 'desc')->paginate($RowsPerPage);
if ($books->isEmpty()) {
return $this->notFound("No Trashed Books Found");
}
#Fetch All Normal And Trashed Records
$books = Book::withTrashed()->with('payment', 'order')
->orderBy('created_at', 'desc')->paginate($RowsPerPage);
if ($books->isEmpty()) {
return $this->notFound("No Trashed and All Books Found");
}
#Fetch Records With Relationships(Mutilple Tables Related Data)
$homedata = Book::with('payment', 'order')->orderBy('id', 'desc')->paginate($RowsPerPage);
if ($homedata->isEmpty()) {
return $this->notFound("Home data Not Found");
}
#Fetch Orders And Users/Payment Of Specified User With Matching Book_Id(Forign Key)
$orders = Order::with('payment', 'users')->where('book_id', $request->uid)
->orderBy('id', 'desc')->paginate($RowsPerPage);
if ($orders->isEmpty()) {
return $this->notFound("Orders Not Found");
}
#Ignore(Columns) User Phone Number Where Id=1(Search Another People Phone Number Not User_Id =1)
$Exists = Profile::where('user_id', '!=', 1)->where('phone', $phone)->count();
#Date Fetch Record With Single Date
$order = Order::with('users', 'payment')->where('book_id', $request->book_id)
->whereDate('next_order', '=', $request->date)
->orderBy('next_order', 'desc')
->paginate($RowsPerPage);
if ($order->isEmpty()) {
return $this->notFound("Orders Not Found");
}
#Date Fetch Search Record Of Specified User With Date Id/From/To/Postage
#$from = date('2022-08-20');
#$to = date('2022-08-26');
#return records will be 21,22,23,24,25
$order = Order::with('payment', 'users')
->whereBetween('next_order', [$request->from, $request->to])
->where('book_id', $request->uid)
->where('payment', $request->payment)
->orderBy('next_order', 'desc')
->paginate($RowsPerPage);
if ($order->isEmpty()) {
return $this->notFound("Order Not Found");
}
#Date Fetch Record With single date and Between Two Dates(both)
//or Where added For fetch 1 (single)Date record
$order = Order::with('users', 'payment')
->whereBetween('next_order', [$request->from, $request->to])
->orWhere('next_order', '=', $request->from)
->where('payment', $request->payment)
->orderBy('next_order', 'desc')
->paginate($RowsPerPage);
if ($order->isEmpty()) {
return $this->notFound("Order Not Found");
}
#Fetch Record With Search Term
$homedata = Book::with('payment', 'order')
->where('email', 'like', "%$search_term%")
->orWhere('name', 'like', "%$search_term%")
->orderBy('id', 'desc')->paginate(10);
if ($homedata->isEmpty()) {
return $this->notFound("No Home data Found");
}
#Fetch Records With Key Values Paires(Shipping Methods Title(Text) And Id(Value))
$cards = Shipping::orderBy('id', 'asc')->get()->toArray();
$p_options = [];
foreach ($cards as $key => $value) {
//echo $value["id"]." ".$value["title"];
$collect["text"] = $value["title"];
$collect["value"] = $value["id"];
array_push($p_options, $collect);
}
if (!$p_options) {
return $this->notFound("Postage Options Not Found");
} else {
return $this->actionSuccess("Home data Found Successfully", $p_options);
}
#Fetch Records With Collection Key Values Pairs(General Settings)
$collection = GeneralSettings::all();
$collection = $collection->keyBy('secret_key');
$response = new \stdClass();
$response->facebook = $collection->get('facebook_link')->value;
$response->github = $collection->get('github_link')->value;
$response->linkedIn = $collection->get('linkedin_link')->value;
if ($collection->isEmpty()) {
return $this->notFound("No data Found");
} else {
return $this->actionSuccess('Data Fetched', $response);
}
}
/**
* DELETE
* This will be used to delete the data on the database 🙂
*/
public function DELETE(Request $request)
{
#Soft Delete(Moved To Trash Folder)
$book = Book::where('id', $request->user_id)->delete();
if ($book) {
return $this->actionSuccess("Moved to Trash");
}
#Restore(Restore The Trashed Record)
$book = Book::onlyTrashed()->where('id', $request->user_id)->restore();
if ($book) {
return $this->actionSuccess("User Restored");
}
#Force Delete(Parmanent Deletes The User)
$book = Book::onlyTrashed()->where('id', $request->user_id)->forceDelete();
if ($book) {
return $this->actionSuccess("User Deleted Parmanantly");
}
}
/**
* ADVANCED QUERIES
* These are advanced queries on laravel 🙂
*/
public function ADVANCED_QUERIES(Request $request)
{
$second_last_record=Transition::orderBy('created_at', 'desc')->skip(1)->take(1)->get(); #second last record
$get_all_count=CountryModel::get()->count(); #get all count
$get_last_updated_record=CountryModel::latest('updated_at')->first(); #get last updated record
$useremail = User::where('email', $request->email)->whereNotIn('email', ['[email protected]'])->first(); #where not in email example
$result = User::where('id', $request->user_id)->pluck('email')->first(); #only single column value
$PrimarySet = UserBankAccount::query()->update(['is_primary' => 0]); #update all rows
$last_reply = TicketConversationModel::where('ticket_id', $value->id)->orderBy('id', 'DESC')->latest('created_at')->pluck('created_at')->first(); #get last row reply date
$check['user_id'] = $user_id;
$data["name"] = "Prince Ferozepuria";
User::updateOrCreate($check, $data); #update create with check
}
}