コード例 #1
0
 /**
  * Store a newly created resource in storage.
  *
  * @param  \Illuminate\Http\Request $request
  * @return \Illuminate\Http\Response
  */
 public function store(Request $request)
 {
     // Validate API input
     $validator = Validator::make($request->all(), ['timetable_id' => 'required|integer', 'timeline_token' => 'required|string', 'offset_from_utc' => 'required|integer', 'week' => 'required|string|in:current,next', 'day' => 'sometimes|integer|min:0|max:6']);
     if ($validator->fails()) {
         return response()->json(['error' => true, 'messages' => $validator->messages()], 400);
     }
     // Retrieve timetable, ensuring it belongs to the user
     try {
         $timetable = Timetable::findOrFail($request->input('timetable_id'));
         if ($timetable->user->id !== Auth::user()->id) {
             throw new ModelNotFoundException();
         }
     } catch (ModelNotFoundException $e) {
         return response()->json(['error' => true, 'messages' => ['timetable' => 'Timetable not found.']], 404);
     }
     // Get user's week
     $nowInUTC = Carbon::now('UTC')->addMinutes($request->input('offset_from_utc'));
     if ($request->input('week') === 'current') {
         $weekBeginning = $nowInUTC->copy()->startOfWeek();
     } else {
         $weekBeginning = $nowInUTC->copy()->addWeek()->startOfWeek();
     }
     // Ensure the day requested is not prior to user's current day
     if ($request->input('week') === 'current' && $request->has('day')) {
         $dayOfWeek = $nowInUTC->dayOfWeek === 0 ? 6 : $nowInUTC->dayOfWeek - 1;
         if ($request->input('day') < $dayOfWeek) {
             return response()->json(['error' => 'true', 'messages' => ['day' => 'Cannot retrieve previous day.']], 403);
         }
     }
     // Create pins
     $hot = new Hot();
     $hot->parseJson($timetable->data);
     $pins = $hot->outputHotFormatToPinFormat($weekBeginning, $request->input('offset_from_utc'), $timetable->has_period_numbers);
     $pinFormatter = new PinFormatter($pins);
     // Remove unnecessary pins if current week requested
     if ($request->input('week') === 'current') {
         $pins = $pinFormatter->removePinsOlderThanCurrentDay();
     }
     // Retrieve pins for specified day only
     if ($request->has('day')) {
         $pins = $pinFormatter->retrievePinsForDay($request->input('day'));
     }
     $job = new Job();
     $job->pushPins($timetable->id, request()->input('timeline_token'), $pins, Auth::user()->id);
     return response()->json('All pins sent.', 200);
 }
コード例 #2
0
ファイル: Job.php プロジェクト: kz/timetable-pusher-backend
 public function pushPins($timetableId, $timelineToken, $pins, $userId)
 {
     try {
         $timetable = Timetable::findOrFail($timetableId);
     } catch (ModelNotFoundException $e) {
         throw new ModelNotFoundException();
     }
     $job = new Entities\Job();
     $job->user_id = $userId;
     $job->type = 'create';
     $job->timetable_id = $timetable->id;
     $job->save();
     $job->pins_sent = 0;
     Log::info(json_encode($pins));
     foreach ($pins as $pinDay) {
         foreach ($pinDay as $pin) {
             $job->pins_sent += 1;
             Log::info(json_encode($pin));
             $this->dispatch(new PushPin($timelineToken, $pin, $job->id));
         }
     }
     $job->update();
 }
コード例 #3
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id)
 {
     try {
         $timetable = Timetable::findOrFail($id);
     } catch (ModelNotFoundException $e) {
         return redirect('/dashboard')->withErrors('Timetable not found.');
     }
     if ($timetable->user_id !== Auth::user()->id) {
         return redirect('/dashboard')->withErrors('Timetable not found.');
     }
     $timetable->delete();
     return redirect('/dashboard')->with(['success' => ['Your timetable has successfully been deleted.']]);
 }
コード例 #4
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     return Timetable::whereUserId(Auth::user()->id)->get();
 }