このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/app/Http/Controllers/Api/MeetingApprovalsController.php

182 行
6.3 KiB
PHP
Raw 通常表示 履歴

<?php
namespace App\Http\Controllers\Api;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
2021-10-15 10:37:47 +09:00
use Illuminate\Support\Facades\Log;
use App\Models\Child;
use App\Models\Meeting;
use App\Models\MeetingApprovals;
2021-10-15 10:37:47 +09:00
use App\Models\FatherRelation;
class MeetingApprovalsController extends Controller {
2021-11-10 22:38:28 +09:00
public function countNonApproval () {
return MeetingApprovals::where('child_id', session()->get('children')['id'])->whereNull('approval_at')->count();
}
2021-11-10 23:01:50 +09:00
public function countIncomplete () {
return MeetingApprovals::where('father_id', session()->get('fathers')['id'])->whereNull('approval_at')->count();
}
public function register (Request $r) {
2021-11-03 18:25:32 +09:00
if (!isset($r->meeting_id) || !isset($r->children) || count(json_decode($r->children)) == 0) {
2021-10-31 22:26:12 +09:00
return ['status_code' => 400];
}
2021-11-08 17:31:46 +09:00
$create = ['meeting_id' => $r->meeting_id];
try {
2021-11-03 18:25:32 +09:00
foreach (json_decode($r->children) as $child) {
2021-11-08 17:31:46 +09:00
$create['child_id'] = $child;
2021-11-08 17:45:56 +09:00
MeetingApprovals::create($create);
}
} catch (\Throwable $e) {
Log::critical($e->getMessage());
return ['status_code' => 400];
}
// 承知登録に成功
return ['status_code' => 200];
}
public function delete (Request $r) {
if (!isset($r->meeting_id) || !isset($r->children) || count($r->children) == 0) {
2021-10-31 22:26:12 +09:00
return ['status_code' => 400];
}
try {
foreach ($r->children as $k => $v) {
2021-11-03 19:54:52 +09:00
MeetingApprovals::where('child_id', (int)$v)->where('meeting_id', (int)$r->meeting_id)->delete();
}
} catch (\Throwable $e) {
Log::critical($e->getMessage());
return ['status_code' => 400];
}
return ['status_code' => 200];
}
2021-10-06 14:50:13 +09:00
public function registerApproval (Request $r) {
if (!isset($r->meeting_id) || !isset($r->child_id)) {
2021-10-31 22:26:12 +09:00
return ['status_code' => 400, 'error_messages' => ['承認に失敗しました。']];
2021-10-06 14:50:13 +09:00
}
2021-11-05 23:57:27 +09:00
if (null === (MeetingApprovals::where('meeting_id', (int)$r->meeting_id)->where('child_id', (int)$r->child_id)->first())) {
return ['status_code' => 400, 'error_messages' => ['承認に失敗しました。']];
2021-10-06 14:50:13 +09:00
}
2021-11-08 17:45:56 +09:00
// $update = ['approval_at' => null];
$update = ['approval_at' => date('Y-m-d H:i:s')];
2021-11-03 20:46:48 +09:00
try {
2021-11-08 17:31:46 +09:00
MeetingApprovals::where('meeting_id', (int)$r->meeting_id)->where('child_id', (int)$r->child_id)->update($update);
2021-11-03 20:46:48 +09:00
} catch (\Throwable $e) {
// 失敗
Log::critical($e->getMessage());
return ['status_code' => 400, 'error_messages' => ['承認に失敗しました。']];
}
return ['status_code' => 200, 'success_messages' => ['承認しました。']];
2021-10-06 14:50:13 +09:00
}
public function listChildrenOfMeeting (Request $r) {
if (!isset($r->meeting_id) || !isset($r->child_id)) {
2021-10-31 22:26:12 +09:00
return ['status_code' => 400, 'error_messages' => ['承認に失敗しました。']];
2021-10-06 14:50:13 +09:00
}
$meeting_approvals_select = ['id', 'child_id', 'approval_at'];
$update = ['hire_at' => date('Y-m-d H:i:s', strtotime($r->hire_at))];
2021-10-31 00:50:35 +09:00
if (null === ($params = MeetingApprovals::select($meeting_approvals_select)->where('meeting_id', (int)$r->meeting_id)->where('child_id', (int)$r->child_id)->get())) {
2021-10-31 22:26:12 +09:00
return ['status_code' => 400, 'error_messages' => ['承認に失敗しました。']];
}
try {
2021-10-31 00:50:35 +09:00
FatherRelation::where('child_id', (int)$r->child_id)->update($update);
} catch (\Throwable $e) {
// 失敗
Log::critical($e->getMessage());
return ['status_code' => 400, 'error_messages' => ['登録に失敗しました。']];
2021-10-06 14:50:13 +09:00
}
2021-10-31 22:26:12 +09:00
return ['status_code' => 200, 'success_messages' => ['承認しました。']];
2021-10-06 14:50:13 +09:00
}
2021-10-06 14:50:13 +09:00
public function listChildrenOfApprovel (Request $r) {
if (!isset($r->meeting_id)) {
return ['status_code' => 400];
}
2021-10-06 14:50:13 +09:00
$meeting_approvals_select = ['id', 'child_id', 'approval_at'];
$child_select = ['id', 'image', 'last_name', 'first_name'];
2021-10-31 00:50:35 +09:00
if (null === ($params = MeetingApprovals::select($meeting_approvals_select)->where('meeting_id', (int)$r->meeting_id)->whereNotNull('approval_at')->get())) {
2021-10-07 13:51:53 +09:00
// エラーの場合
2021-10-31 22:26:12 +09:00
return ['status_code' => 400];
2021-10-07 13:51:53 +09:00
}
2021-10-07 13:51:53 +09:00
foreach ($params as $p) {
2021-10-31 00:50:35 +09:00
if (null === ($p->child_id = Child::select($child_select)->where('id', (int)$p->child_id)->first())) {
2021-10-31 22:26:12 +09:00
return ['status_code' => 400];
2021-10-07 13:51:53 +09:00
}
}
2021-10-31 22:26:12 +09:00
return ['status_code' => 200, 'params' => $params];
}
2021-10-06 14:50:13 +09:00
public function listChildrenOfUnapprovel (Request $r) {
if (!isset($r->meeting_id)) {
return ['status_code' => 400];
}
$meeting_select = ['id', 'child_id', 'approval_at'];
$child_select = ['id', 'image', 'last_name', 'first_name'];
2021-10-31 00:50:35 +09:00
if (null === ($params = MeetingApprovals::select($meeting_select)->where('meeting_id', (int)$r->meeting_id)->whereNull('approval_at')->get())) {
2021-10-07 13:51:53 +09:00
// エラーの場合
2021-10-31 22:26:12 +09:00
return ['status_code' => 400];
2021-10-07 13:51:53 +09:00
}
2021-10-07 13:51:53 +09:00
foreach ($params as $p) {
2021-10-31 00:50:35 +09:00
if (null === ($p->child_id = Child::select($child_select)->where('id', (int)$p->child_id)->first())) {
2021-10-31 22:26:12 +09:00
return ['status_code' => 400];
2021-10-07 13:51:53 +09:00
}
}
2021-10-31 22:26:12 +09:00
return ['status_code' => 200, 'params' => $params];
}
2021-10-06 14:50:13 +09:00
public function deleteRelationMeeting ($meeting_id) {
if (!isset($meeting_id)) {
return ['status_code' => 400];
}
2021-10-07 13:51:53 +09:00
try {
2021-10-31 00:50:35 +09:00
MeetingApprovals::where('meeting_id', (int)$meeting_id)->delete();
2021-10-07 13:51:53 +09:00
} catch (\Throwable $e) {
Log::critical($e->getMessage());
return ['status_code' => 400];
2021-10-06 14:50:13 +09:00
}
2021-10-07 13:51:53 +09:00
return ['status_code' => 200];
2021-10-06 14:50:13 +09:00
}
2021-10-06 14:50:13 +09:00
public function deleteRelationChild ($child_id) {
if (!isset($child_id)) {
return ['status_code' => 400];
}
2021-10-07 13:51:53 +09:00
try {
2021-10-31 00:50:35 +09:00
MeetingApprovals::where('child_id', (int)$child_id)->delete();
2021-10-07 13:51:53 +09:00
} catch (\Throwable $e) {
Log::critical($e->getMessage());
return ['status_code' => 400];
2021-10-06 14:50:13 +09:00
}
2021-10-07 13:51:53 +09:00
return ['status_code' => 200];
2021-10-06 14:50:13 +09:00
}
}