isAvailable()) { return response()->json([ 'status' => 404, 'error' => [ 'message' => 'The webhook is unavailable' ] ], 404); } $inputs = $request->all(); $validator = Validator::make($inputs, [ 'checked_in_at' => 'nullable|date|after_or_equal:2000-01-01 00:00:00|before_or_equal:2099-12-31 23:59:59', 'note' => 'nullable|string|max:500', 'link' => 'nullable|url|max:2000', 'tags' => 'nullable|array', 'tags.*' => ['string', 'not_regex:/[\s\r\n]/u', 'max:255'], 'is_private' => 'nullable|boolean', 'is_too_sensitive' => 'nullable|boolean', ], [ 'tags.*.not_regex' => 'The :attribute cannot contain spaces, tabs and newlines.' ]); if ($validator->fails()) { return response()->json([ 'status' => 422, 'error' => [ 'message' => 'Validation failed', 'violations' => $validator->errors()->all(), ] ]); } $ejaculatedDate = empty($inputs['checked_in_at']) ? now() : new Carbon($inputs['checked_in_at']); $ejaculatedDate = $ejaculatedDate->setTimezone(date_default_timezone_get())->startOfMinute(); if (Ejaculation::where(['user_id' => $webhook->user_id, 'ejaculated_date' => $ejaculatedDate])->count()) { return response()->json([ 'status' => 422, 'error' => [ 'message' => 'Checkin already exists in this time', ] ]); } $ejaculation = Ejaculation::create([ 'user_id' => $webhook->user_id, 'ejaculated_date' => $ejaculatedDate, 'note' => $inputs['note'] ?? '', 'link' => $inputs['link'] ?? '', 'source' => Ejaculation::SOURCE_WEBHOOK, 'is_private' => $request->has('is_private') ?? false, 'is_too_sensitive' => $request->has('is_too_sensitive') ?? false ]); $tagIds = []; if (!empty($inputs['tags'])) { foreach ($inputs['tags'] as $tag) { $tag = trim($tag); if ($tag === '') { continue; } $tag = Tag::firstOrCreate(['name' => $tag]); $tagIds[] = $tag->id; } } $ejaculation->tags()->sync($tagIds); if (!empty($ejaculation->link)) { event(new LinkDiscovered($ejaculation->link)); } return response()->json([ 'status' => 200, 'checkin' => new EjaculationResource($ejaculation) ]); } }