pushdeer/api/app/Http/Controllers/PushDeerDeviceController.php

92 lines
2.7 KiB
PHP
Raw Normal View History

2021-12-23 00:19:55 +08:00
<?php
namespace App\Http\Controllers;
use App\Models\PushDeerDevice;
use Illuminate\Http\Request;
class PushDeerDeviceController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function list()
{
$pd_devices = PushDeerDevice::where('uid', $_SESSION['uid'])->get(['id', 'uid', 'name', 'type', 'device_id', 'is_clip']);
return http_result(['devices' => $pd_devices]);
}
public function reg(Request $request)
{
$validated = $request->validate(
[
2022-01-24 19:11:00 +08:00
'name' => 'string|required',
'device_id' => 'string|required',
'is_clip' => 'integer|nullable',
2022-01-21 13:18:39 +08:00
'type' => 'string|nullable',
2021-12-23 00:19:55 +08:00
]
);
$uid = $_SESSION['uid'];
if (strlen($uid) < 1) {
return send_error('uid错误', ErrorCode('ARGS'));
2021-12-23 00:19:55 +08:00
}
2022-01-21 13:18:39 +08:00
$type = 'ios';
if (isset($validated['type']) && strlen($validated['type']) > 0) {
2022-01-21 13:18:39 +08:00
$type = trim($validated['type']);
}
2021-12-23 00:19:55 +08:00
$the_device = [];
$the_device['uid'] = $uid;
$the_device['name'] = $validated['name'];
2022-01-21 13:18:39 +08:00
$the_device['type'] = $type;
2021-12-23 00:19:55 +08:00
$the_device['is_clip'] = intval($validated['is_clip']);
$the_device['device_id'] = $validated['device_id'];
$pd_device = PushDeerDevice::updateOrCreate($the_device, ['uid','device_id']);
return $this->list();
}
public function rename(Request $request)
{
$validated = $request->validate(
[
2022-01-24 19:11:00 +08:00
'id' => 'integer|required',
'name' =>'string|required'
2021-12-23 00:19:55 +08:00
]
);
if ($pd_device = PushDeerDevice::where('id', $validated['id'])->get(['id', 'uid', 'name', 'type', 'device_id', 'is_clip'])->first()) {
if ($pd_device->uid == $_SESSION['uid']) {
$pd_device->name = $validated['name'];
$pd_device->save();
return http_result(['message'=>'done']);
}
2021-12-23 00:19:55 +08:00
}
return send_error('设备不存在或已注销', ErrorCode('ARGS'));
2021-12-23 00:19:55 +08:00
}
public function remove(Request $request)
{
$validated = $request->validate(
[
2022-01-24 19:11:00 +08:00
'id' => 'integer|required',
2021-12-23 00:19:55 +08:00
]
);
if ($pd_device = PushDeerDevice::where('id', $validated['id'])->get(['id', 'uid', 'name', 'type', 'device_id', 'is_clip'])->first()) {
if ($pd_device->uid == $_SESSION['uid']) {
$pd_device->delete();
return http_result(['message'=>'done']);
}
2021-12-23 00:19:55 +08:00
}
return send_error('设备不存在或已注销', ErrorCode('ARGS'));
2021-12-23 00:19:55 +08:00
}
}