/**
  *
  * @param Request $request
  * @return Response
  */
 public function store(Request $request)
 {
     $timer = new Timer($request->only(['start', 'finish']));
     $timer->user()->associate(Auth::user());
     $activity = Activity::find($request->get('activity_id'));
     if (!$activity) {
         $activity = Activity::forCurrentUser()->where('name', 'sleep')->first();
     }
     $timer->activity()->associate($activity);
     $timer->save();
     $timer = $this->transform($this->createItem($timer, new TimerTransformer(['date' => $this->calculateFinishDate($timer)])))['data'];
     return response($timer, Response::HTTP_CREATED);
 }
 /**
  *
  * @param $date
  * @return array
  */
 public function calculateTotalMinutesForWeek($date)
 {
     Carbon::setWeekStartsAt(Carbon::SUNDAY);
     Carbon::setWeekEndsAt(Carbon::SATURDAY);
     $startOfWeek = Carbon::createFromFormat('Y-m-d', $date)->startOfWeek();
     $endOfWeek = Carbon::createFromFormat('Y-m-d', $date)->endOfWeek();
     //For calculating total untracked time
     $totalMinutesForAllActivities = 0;
     $activities = Activity::forCurrentUser()->get();
     foreach ($activities as $activity) {
         $activity->totalMinutesForWeek = $activity->calculateTotalMinutesForWeek($startOfWeek, $endOfWeek);
         $activity->totalMinutesForAllTime();
         $activity->averageMinutesPerDayForWeek = $activity->calculateAverageMinutesPerDayForWeek($date);
         $totalMinutesForAllActivities += $activity->totalMinutesForWeek;
     }
     $activities[] = $this->getUntrackedTimeForWeek($totalMinutesForAllActivities, $date);
     return $activities;
 }
 /**
  *
  * @return Response
  */
 public function index()
 {
     $activities = Activity::forCurrentUser()->get();
     $activities = $this->transform($this->createCollection($activities, new ActivityTransformer()))['data'];
     return response($activities, Response::HTTP_OK);
 }
 /**
  * Define your route model bindings, pattern filters, etc.
  *
  * @param  \Illuminate\Routing\Router  $router
  * @return void
  */
 public function boot(Router $router)
 {
     parent::boot($router);
     Route::bind('exercises', function ($id) {
         return Exercise::forCurrentUser()->findOrFail($id);
     });
     Route::bind('exerciseEntries', function ($id) {
         return ExerciseEntry::forCurrentUser()->findOrFail($id);
     });
     Route::bind('menuEntries', function ($id) {
         return MenuEntry::forCurrentUser()->findOrFail($id);
     });
     Route::bind('exerciseSeries', function ($id) {
         return ExerciseSeries::forCurrentUser()->findOrFail($id);
     });
     Route::bind('foods', function ($id) {
         return Food::forCurrentUser()->findOrFail($id);
     });
     Route::bind('recipes', function ($id) {
         return Recipe::forCurrentUser()->findOrFail($id);
     });
     Route::bind('exerciseTags', function ($id) {
         return Tag::forCurrentUser()->where('for', 'exercise')->findOrFail($id);
     });
     Route::bind('recipeTags', function ($id) {
         return Tag::forCurrentUser()->where('for', 'recipe')->findOrFail($id);
     });
     Route::bind('foodUnits', function ($id) {
         return Unit::forCurrentUser()->where('for', 'food')->findOrFail($id);
     });
     Route::bind('exerciseUnits', function ($id) {
         return Unit::forCurrentUser()->where('for', 'exercise')->findOrFail($id);
     });
     Route::bind('timers', function ($id) {
         return Timer::forCurrentUser()->findOrFail($id);
     });
     Route::bind('activities', function ($id) {
         return Activity::forCurrentUser()->findOrFail($id);
     });
     Route::bind('weights', function ($idOrDate) {
         if (strrpos($idOrDate, '-')) {
             //parameter is the date of the entry
             $weight = Weight::forCurrentUser()->where('date', $idOrDate)->first();
         } else {
             //parameter is the id of the entry
             $weight = Weight::forCurrentUser()->findOrFail($idOrDate);
         }
         return $weight;
     });
     /**
      * $parameter is either the id or the date
      */
     Route::bind('journal', function ($parameter) {
         /**
          * @VP:
          * Is there a better way to check if the $parameter is an
          * id or a date? When I tried using Carbon to create an object from
          * the parameter, it threw an exception when the $parameter was the id,
          * whereas I just wanted a boolean.
          */
         if (strrpos($parameter, '-')) {
             //$parameter is the date of the entry
             $journal = Journal::forCurrentUser()->where('date', $parameter)->first();
         } else {
             //$parameter is the id of the entry
             $journal = Journal::forCurrentUser()->findOrFail($parameter);
         }
         return $journal;
     });
 }
 /**
  * @test
  * @return void
  */
 public function it_can_update_an_activity()
 {
     DB::beginTransaction();
     $this->logInUser();
     $activity = Activity::forCurrentUser()->first();
     $response = $this->call('PUT', '/api/activities/' . $activity->id, ['name' => 'numbat', 'color' => 'blue']);
     $content = json_decode($response->getContent(), true);
     //        dd($content);
     $this->assertArrayHasKey('id', $content);
     $this->assertArrayHasKey('name', $content);
     $this->assertArrayHasKey('color', $content);
     $this->assertEquals('numbat', $content['name']);
     $this->assertEquals('blue', $content['color']);
     $this->assertEquals(200, $response->getStatusCode());
     DB::rollBack();
 }