/** * @test * @return void */ public function it_can_update_a_journal_entry() { $this->logInUser(); $entry = Journal::forCurrentUser()->first(); $response = $this->call('PUT', '/api/journal/' . $entry->id, ['text' => 'numbat']); $content = json_decode($response->getContent(), true)['data']; $this->assertArrayHasKey('id', $content); $this->assertArrayHasKey('date', $content); $this->assertArrayHasKey('text', $content); $this->assertEquals('numbat', $content['text']); $this->assertEquals(200, $response->getStatusCode()); }
public function run() { Journal::truncate(); $faker = Faker::create(); $users = User::all(); foreach ($users as $user) { /** * Create entries for the last 50 days. */ foreach (range(0, 49) as $index) { $today = Carbon::today(); $text = $faker->word . '<div>' . $faker->sentence . '</div><div>' . $faker->sentence . '</div>'; Journal::create(['date' => $today->subDays($index)->format('Y-m-d'), 'text' => $text, 'user_id' => $user->id]); } } }
/** * * @param Request $request * @param Journal $journal * @return mixed */ public function update(Request $request, Journal $journal) { $journal->text = $request->get('text'); $journal->save(); return $this->responseOkWithTransformer($journal, new JournalTransformer()); }
/** * 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; }); }