123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794 |
- <?php
-
- use Illuminate\Database\Eloquent\Collection;
-
- class ActivitiesController extends \BaseController
- {
-
- /**
- * Save a new activity
- *
- * @param int $id The id of the parent course
- * @return Response Redirect to the parent course's page
- */
- public function create($id)
- {
- /** Validation rules */
-
- $validator = Validator::make(
- array(
- 'name' => Input::get('name'),
- 'description' => Input::get('description')
- ),
- array(
- 'name' => 'required|unique:activities,course_id,' . $id,
- 'description' => 'required|min:10'
- )
- );
-
-
- /** If validation fails */
- if ($validator->fails()) {
- /** Prepare error message */
- $message = 'Error(s) creating a new Activity<ul>';
-
- foreach ($validator->messages()->all('<li>:message</li>') as $validationError) {
- $message .= $validationError;
- }
-
- $message .= '</ul>';
-
- /** Send error message and old data */
- Session::flash('status', 'danger');
- Session::flash('message', $message);
- return Redirect::back()->withInput();
- } else {
- /** Instantiate new activity */
- $activity = new Activity;
- $activity->name = Input::get('name');
- $activity->description = Input::get('description');
- $activity->course_id = $id;
- $activity->date = date('Y-m-d');
-
- /** If activity is saved, send success message */
- if ($activity->save()) {
- Session::flash('status', 'success');
- Session::flash('message', 'Activity created.');
- return Redirect::action('ActivitiesController@show', array($activity->id));
- }
-
- /** If saving fails, send error message and old data */
- else {
- Session::flash('status', 'warning');
- Session::flash('message', 'Error adding Activity. Please try again later.');
- return Redirect::back()->withInput();
- }
- }
- }
-
- public function newCreate($course_id = null)
- {
- $title = 'Create Activity';
- $activity_types = [];
- $instruments = Rubric::all();
- $courses = Course::where('user_id', Auth::user()->id)->get();
- $outcomes = Outcome::with('objectives')->get();
- // var_dump($outcomes[0]->objectives);
- $objectives_by_outcome = Collection::make([]);
- $outcomes->each(function ($outcome) use (&$objectives_by_outcome) {
- // var_dump($outcome->objectives);
- $objectives_by_outcome->put($outcome->id, $outcome->objectives);
- // var_dump($objectives);
- });
- $criteria_by_objective = Collection::make([]);
- $objectives_by_outcome->each(function ($objectives) use (&$criteria_by_objective) {
- $objectives->each(function ($objective) use (&$criteria_by_objective) {
- $criteria_by_objective->put($objective->id, $objective->criteria);
- });
- });
- $transforming_actions = [];
- $course = Course::find($course_id);
- // var_dump($criteria_by_objective);
- // return $objectives->toJson();
- return View::make(
- 'local.managers.admins.new-activity-create',
- compact(
- 'title',
- 'course',
- 'activity_types',
- 'instruments',
- 'courses',
- 'outcomes',
- 'objectives_by_outcome',
- 'criteria_by_objective',
- 'transforming_actions'
- )
- );
- }
-
- /**
- *
- */
- public function show($id)
- {
- $activity = Activity::find($id);
-
-
- // If activity does not exist, display 404
- if (!$activity)
- App::abort('404');
-
- // Get activity's course
- $course = Course::where('id', '=', $activity->course_id)->firstOrFail();
-
- // If activity does not belong to the requesting user, display 403
- if ($course->user_id != Auth::id() and Auth::user()->role == 4)
- App::abort('403', 'Access Forbidden');
-
- // Get active semesters
- $active_semesters = array();
- $active_semesters_collection = Semester::select('id')->where('is_visible', 1)->where('start', '<=', date('Y-m-d H:i:s'))->where('end', '>=', date('Y-m-d H:i:s'))->get();
- foreach ($active_semesters_collection as $active_semester) {
- $active_semesters[] = $active_semester->id;
- }
- Log::info($active_semesters);
- // Added the function htmlspecialchars to activity name string because it was corrupting Jquery code while using quotes on page rendering. - Carlos R Caraballo 1/18/2019
- $title = $course->code . $course->number . '-' . $course->section . ': ' . htmlspecialchars($activity->name, ENT_QUOTES) . ' <span class="small attention">(' . $course->semester->code . ')</span>';
- $outcomes = Outcome::orderBy('name', 'asc')->get();
- $outcomes_achieved = json_decode($activity->outcomes_achieved, true);
- $outcomes_attempted = json_decode($activity->outcomes_attempted, true);
- $tru = is_null($activity->rubric) ? "brr anuel" : "ye ye ye";
- Log::info($tru);
- Log::info(count($activity->rubric));
-
- return View::make('local.professors.activity', compact('activity', 'title', 'outcomes', 'outcomes_achieved', 'outcomes_attempted', 'course', 'student_count', 'active_semesters'));
- }
-
-
- public function assess($id)
- {
- $activity = Activity::find($id);
-
- // If activity does not exist, display 404
- if (!$activity)
- App::abort('404');
-
- // Get activity's course
- $course = Course::where('id', '=', $activity->course_id)->firstOrFail();
-
- // If activity does not belong to the requesting user, display 403
- if ($course->user_id != Auth::id())
- App::abort('403', 'Access Forbidden');
-
- $title = 'Assessment Sheet';
- $students = $course->students;
-
- // Get rubric contents
- $rubric = Rubric::find($activity->rubric[0]->id);
- Log::info($rubric);
- Log::info($activity);
- $criterion_rubric = DB::table('criteria')
- ->join("criterion_rubric", "criterion_rubric.criterion_id", "=", "criteria.id")
- ->join("activity_criterion", "criteria.id", '=', 'activity_criterion.criterion_id')
- ->where("activity_criterion.activity_id", '=', $activity->id)
- ->where('criterion_rubric.rubric_id', '=', $rubric->id)
- ->select('criteria.name', 'criteria.id as criterion_id', 'criteria.subcriteria')
- ->addSelect('activity_criterion.activity_id', 'activity_criterion.weight', 'activity_criterion.id as activity_criterion_id')
- ->addSelect('criterion_rubric.rubric_id', 'criterion_rubric.id as rubric_criterion_id')
- ->addSelect('criterion_rubric.copyright', 'criterion_rubric.notes')
- ->get();
- Log::info($criterion_rubric);
- foreach ($criterion_rubric as $index => $singleCR) {
- $singleCR->scales = json_encode(DB::table('scales')->join('rubric_criteria_scale', 'rubric_criteria_scale.scale_id', '=', 'scales.id')
- ->where('rubric_criteria_scale.rubric_criterion_id', '=', $singleCR->rubric_criterion_id)
- ->orderBy('position')
- ->lists('description'));
- }
- $criterion_rubric_ids = DB::table('criterion_rubric')->where('rubric_id', '=', $rubric->id)->lists('id');
- Log::info($rubric);
- Log::info($criterion_rubric);
-
-
-
-
-
- // Get results
- $activity_criterion_ids = DB::table('activity_criterion')->where("activity_id", '=', $activity->id)->lists('id');
- Log::info($activity_criterion_ids);
- $assessments = DB::table('assessments')->join('students', 'assessments.student_id', '=', 'students.id')->whereIn('activity_criterion_id', $activity_criterion_ids)->orderBy('assessments.id', 'asc')->get();
- Log::info($assessments);
- // Decode the scores (blade workaround)
- $scores_array = array();
-
- foreach ($assessments as $index => $assessment) {
- $scores_array[$assessment->student_id][$index] = $assessment->score;
- $scores_array[$assessment->student_id]['comments'] = DB::table('activity_student')->where('student_id', '=', $assessment->student_id)
- ->where("activity_id", '=', $activity->id)
- ->select('comments')->first()->comments;
- }
-
- Log::info($scores_array);
-
-
- return View::make('local.professors.assessment', compact('activity', 'title', 'students', 'course', 'criterion_rubric', 'assessments', 'scores_array', 'rubric'));
- }
-
- public function saveAssessment()
- {
- try {
- $exception = DB::transaction(function () {
- DB::transaction(function () {
- // Student assessment data
-
- $activity_id = Input::get('activity_id');
- $student_data = json_decode(Input::get('student_info'));
- $weights = json_decode(Input::get('weights'));
- Log::info(json_encode($weights));
- Log::info(json_encode($student_data));
-
- foreach ($student_data as $index => $student_dict) {
- $student_id = $student_dict->studentId;
- foreach ($student_dict->activity_crit_id as $act_crit_id => $score) {
- if (DB::table('assessments')->where('student_id', '=', $student_id)
- ->where('activity_criterion_id', '=', $act_crit_id)
- ->first()
- ) {
- DB::table('assessments')->where('student_id', '=', $student_id)
- ->where('activity_criterion_id', '=', $act_crit_id)
- ->update(array('score' => $score));
- } else {
- DB::insert("insert into assessments (`activity_criterion_id`, `student_id`, `score`) values ({$act_crit_id}, {$student_id}, {$score})");
- }
- }
- if (DB::table('activity_student')
- ->where('student_id', '=', $student_id)->where('activity_id', '=', $activity_id)
- ->first()
- ) {
- DB::table('activity_student')
- ->where('student_id', '=', $student_id)->where('activity_id', '=', $activity_id)
- ->update(array('comments' => $student_dict->comments));
- } else {
- DB::insert("insert into activity_student (`activity_id`, `student_id`, `comments`) values ({$activity_id}, {$student_id}, '{$student_dict->comments}')");
- }
- }
- $activity_draft = Input::get('draft');
-
- foreach ($weights as $act_crit => $weigh) {
- DB::update("update activity_criterion set weight = {$weigh} where id = {$act_crit}");
- }
- DB::update("update activities set draft = {$activity_draft} where id = {$activity_id}");
- // Outcome count
- Session::flash('status', 'success');
- Session::flash('message', 'Assessment Saved. To add transforming actions click "Transforming Actions".');
- return action('ActivitiesController@show', array(Input::get('activity_id')));
-
- $outcomeCount = Outcome::all()->count();
-
-
- // Activity
- $activity = Activity::find(Input::get('activity_id'));
-
- // Create or update student scores
- if ($activity->outcomes_attempted == NULL) {
- // For each student, save her/his assessment in the db
- foreach ($student_data as $single_student_data) {
- // Find student by id
- $student = Student::find($single_student_data->student_id);
-
- $comments = trim($single_student_data->comments);
- if ($comments == '') {
- $comments = NULL;
- }
-
- // Add the assessment to the pivot table
-
- $student->assessed_activities()->attach($activity->id, array(
- 'scores' => json_encode($single_student_data->scores),
- 'comments' => $single_student_data->comments
- ));
- }
- } else {
- // For each student, save her/his assessment in the db
- foreach ($student_data as $single_student_data) {
- // Find student by id
- $student = Student::find($single_student_data->student_id);
-
- $comments = trim($single_student_data->comments);
- if ($comments == '') {
- $comments = NULL;
- }
-
- // Update the assessment in the pivot table
- $student->assessed_activities()->updateExistingPivot($activity->id, array(
- 'scores' => json_encode($single_student_data->scores),
- 'percentage' => $single_student_data->percentage,
- 'comments' => $single_student_data->comments
- ));
- }
- }
-
-
- // Prepare arrays for criteria achievement for this activity
- $criteria_achievement = json_decode(Input::get('criteria_achievement'));
- $outcomes_attempted = array_fill(1, $outcomeCount, 0);
- $outcomes_achieved = array_fill(1, $outcomeCount, 0);
-
- // Fetch parent course's criteria achievement by outcome, if it exists
- $course = $activity->course;
- $course_outcomes_attempted = NULL;
- $course_outcomes_achieved = NULL;
-
- if ($course->outcomes_attempted == NULL) {
- $course_outcomes_attempted = array_fill(1, $outcomeCount, 0);
- $course_outcomes_achieved = array_fill(1, $outcomeCount, 0);
- } else {
- // the second argument is necessary to convert it into an array
- $course_outcomes_attempted = json_decode($course->outcomes_attempted, true);
- $course_outcomes_achieved = json_decode($course->outcomes_achieved, true);
- }
-
-
- foreach ($criteria_achievement as $criterion_id => $criterion_achieved) {
- // Find corresponding learning outcome
- $criterion = Criterion::withTrashed()->find($criterion_id);
- $outcome = Outcome::find($criterion->outcome_id);
-
- // If criterion is achieved (1), add 1 to all arrays
- if ($criterion_achieved === 1) {
- $outcomes_attempted[$outcome->id] += 1;
- $outcomes_achieved[$outcome->id] += 1;
- $course_outcomes_attempted[$outcome->id] += 1;
- $course_outcomes_achieved[$outcome->id] += 1;
- }
- // Else if it's 0, only add to the attempted outcomes arrays
- elseif ($criterion_achieved === 0) {
- $outcomes_attempted[$outcome->id] += 1;
- $course_outcomes_attempted[$outcome->id] += 1;
- }
- }
-
- // If all values are 0, throw exception
- if (count(array_unique($outcomes_attempted)) == 1 && $outcomes_attempted[1] == 0)
- throw new Exception("Error Processing Request", 1);
-
-
-
- // Set activity fields
- $activity->criteria_achieved = Input::get('criteria_achievement');
- $activity->criteria_achieved_percentage = Input::get('criteria_achieved_percentage');
- $activity->outcomes_attempted = json_encode($outcomes_attempted);
- $activity->outcomes_achieved = json_encode($outcomes_achieved);
-
-
- // Publish results if not a draft. That is, update the activity's course.
- if (Input::get('draft') == false) {
- // Update course
- $course->outcomes_achieved = json_encode($course_outcomes_achieved);
- $course->outcomes_attempted = json_encode($course_outcomes_attempted);
- $course->save();
-
- $activity->draft = false;
- } else {
- // Set draft to true
- $activity->draft = true;
- }
-
- // Save activity
- $activity->save();
-
-
- // Recalculate course outcomes
- $activities = DB::table('activities')
- ->where('course_id', $activity->course->id)
- ->where('draft', 0)
- ->get();
-
-
- // Check if any assessed activities remain
- $remainingAssessed = false;
- foreach ($activities as $activity1) {
- if ($activity1->outcomes_attempted != NULL) {
- $remainingAssessed = true;
- break;
- }
- }
-
- //If there are still evaluated activities in the course, recalculate course outcomes
- if (count($activities) && $remainingAssessed) {
- $outcomeCount = Outcome::all()->count();
-
- // Variables to hold recalculated outcomes for the course
- $course_outcomes_attempted = array_fill(1, $outcomeCount, 0);
- $course_outcomes_achieved = array_fill(1, $outcomeCount, 0);
-
- // For each activity
- foreach ($activities as $activity2) {
- // If activity has been assessed
- if ($activity2->outcomes_attempted != NULL) {
- // Get the achieved criteria
- $criteria_achievement = json_decode($activity2->criteria_achieved, true);
- foreach ($criteria_achievement as $criterion_id => $criterion_achieved) {
- // Find corresponding learning outcome;
- $criterion = Criterion::withTrashed()->find($criterion_id);
- $outcome = Outcome::find($criterion->outcome_id);
-
- // If criterion is achieved (1), add 1 to both arrays
- if ($criterion_achieved === 1) {
- $course_outcomes_attempted[$outcome->id] += 1;
- $course_outcomes_achieved[$outcome->id] += 1;
- }
- // Else, only add to the attempted outcomes arrays
- elseif ($criterion_achieved === 0) {
- $course_outcomes_attempted[$outcome->id] += 1;
- }
- }
- }
- }
-
- // Update course
- DB::table('courses')
- ->where('id', $course->id)
- ->update(array(
- 'outcomes_attempted' => json_encode($course_outcomes_attempted),
- 'outcomes_achieved' => json_encode($course_outcomes_achieved),
- 'updated_at' => date('Y-m-d H:i:s')
- ));
- }
- // Otherwise, set them all to NULL
- else {
- DB::table('courses')
- ->where('id', $course->id)
- ->update(array(
- 'outcomes_attempted' => NULL,
- 'outcomes_achieved' => NULL,
- 'updated_at' => date('Y-m-d H:i:s')
- ));
- }
- });
- });
-
- if (is_null($exception)) {
- Session::flash('status', 'success');
- Session::flash('message', 'Assessment Saved. To add transforming actions click "Transforming Actions".');
- return action('ActivitiesController@show', array(Input::get('activity_id')));
- }
- } catch (Exception $e) {
- Log::info('e:' . $e);
- echo $e->getMessage();
- Session::flash('status', 'danger');
- Session::flash('message', 'Error saving assessment. Try again later.');
-
- return action('ActivitiesController@show', array(Input::get('activity_id')));
- }
- }
-
- public function deleteAssessment()
- {
-
- try {
- $exception = DB::transaction(function () {
- $activity = DB::table('activities')->where('id', Input::get('id'))->first();
-
- $course = DB::table('courses')->where('id', $activity->course_id)->first();
-
-
- // Reset results in activity
- DB::table('activities')
- ->where('id', Input::get('id'))
- ->update(array(
- 'draft' => 0,
- 'outcomes_attempted' => NULL,
- 'outcomes_achieved' => NULL,
- 'criteria_achieved' => NULL,
- 'transforming_actions' => NULL,
- 'assessment_comments' => NULL,
- 'criteria_achieved_percentage' => NULL,
- 'updated_at' => date('Y-m-d H:i:s')
- ));
-
- // Delete students score
- DB::table('assessments')->where('activity_id', $activity->id)->delete();
-
- // Recalculate course outcomes
- $activities = DB::table('activities')
- ->where('course_id', $course->id)
- ->where('draft', 0)
- ->get();
-
-
- // Check if any assessed activties remain
- $remainingAssessed = false;
- foreach ($activities as $activity) {
- if ($activity->outcomes_attempted != NULL) {
- $remainingAssessed = true;
- break;
- }
- }
-
- //If there are still evaluated activities in the course, recalculate course outcomes
- if (count($activities) && $remainingAssessed) {
- $outcomeCount = Outcome::all()->count();
-
- // Variables to hold recalculated outcomes for the course
- $course_outcomes_attempted = array_fill(1, $outcomeCount, 0);
- $course_outcomes_achieved = array_fill(1, $outcomeCount, 0);
-
- // For each activity
- foreach ($activities as $activity) {
- // If activity has been assessed
- if ($activity->outcomes_attempted != NULL) {
- // Get the achieved criteria
- $criteria_achievement = json_decode($activity->criteria_achieved, true);
- foreach ($criteria_achievement as $criterion_id => $criterion_achieved) {
- // Find corresponding learning outcome;
- $criterion = Criterion::withTrashed()->find($criterion_id);
- $outcome = Outcome::find($criterion->outcome_id);
-
- // If criterion is achieved (1), add 1 to both arrays
- if ($criterion_achieved === 1) {
- $course_outcomes_attempted[$outcome->id] += 1;
- $course_outcomes_achieved[$outcome->id] += 1;
- }
- // Else, only add to the attempted outcomes arrays
- elseif ($criterion_achieved === 0) {
- $course_outcomes_attempted[$outcome->id] += 1;
- }
- }
- }
- }
-
- // Update course
- DB::table('courses')
- ->where('id', $course->id)
- ->update(array(
- 'outcomes_attempted' => json_encode($course_outcomes_attempted),
- 'outcomes_achieved' => json_encode($course_outcomes_achieved),
- 'updated_at' => date('Y-m-d H:i:s')
- ));
- }
- // Otherwise, set them all to NULL
- else {
- DB::table('courses')
- ->where('id', $course->id)
- ->update(array(
- 'outcomes_attempted' => NULL,
- 'outcomes_achieved' => NULL,
- 'updated_at' => date('Y-m-d H:i:s')
- ));
- }
- });
-
- if (is_null($exception)) {
- Session::flash('status', 'success');
- Session::flash('message', 'Assessment deleted.');
- return Redirect::back();
- }
- } catch (Exception $e) {
- Session::flash('status', 'danger');
- Session::flash('message', 'Error saving assessment. Try again later.');
-
- return Redirect::back();
- }
- }
-
- public function destroy($id)
- {
- $course = Activity::find($id)->course;
-
- if (Activity::destroy($id)) {
- // Recalculate course outcomes
- $activities = $course->activities;
-
- // Check if any assessed activties remain
- $remainingAssessed = false;
- foreach ($course->activities as $activity) {
- if ($activity->outcomes_attempted != NULL) {
- $remainingAssessed = true;
- break;
- }
- }
-
- //If there are still evaluated activities in the course, recalculate course outcomes
- if (!$course->activities->isEmpty() && $remainingAssessed) {
- $outcomeCount = Outcome::all()->count();
-
- // Variables to hold recalculated outcomes for the course
- $course_outcomes_attempted = array_fill(1, $outcomeCount, 0);
- $course_outcomes_achieved = array_fill(1, $outcomeCount, 0);
-
- // For each activity
- foreach ($activities as $activity) {
- // If activity has been assessed
- if ($activity->outcomes_attempted != NULL) {
- // Get the achieved criteria
- $criteria_achievement = json_decode($activity->criteria_achieved, true);
- foreach ($criteria_achievement as $criterion_id => $criterion_achieved) {
- // Find corresponding learning outcome;
- $criterion = Criterion::withTrashed()->find($criterion_id);
- $outcome = Outcome::find($criterion->outcome_id);
-
- // If criterion is achieved (1), add 1 to both arrays
- if ($criterion_achieved === 1) {
- $course_outcomes_attempted[$outcome->id] += 1;
- $course_outcomes_achieved[$outcome->id] += 1;
- }
- // Else, only add to the attempted outcomes arrays
- elseif ($criterion_achieved === 0) {
- $course_outcomes_attempted[$outcome->id] += 1;
- }
- }
- }
- }
-
- // Update course
- $course->outcomes_achieved = json_encode($course_outcomes_achieved);
- $course->outcomes_attempted = json_encode($course_outcomes_attempted);
- } else {
- $course->outcomes_achieved = NULL;
- $course->outcomes_attempted = NULL;
- }
-
- if ($course->save()) {
- Session::flash('status', 'success');
- Session::flash('message', 'Activity deleted.');
- } else {
- Session::flash('status', 'danger');
- Session::flash('message', 'Error deleting activity. Try again later.');
- return Redirect::back();
- }
-
- return Redirect::action('CoursesController@show', array($course->id));
- } else {
- Session::flash('status', 'danger');
- Session::flash('message', 'Error deleting activity. Try again later.');
- return Redirect::back();
- }
- }
-
- public function update($id)
- {
- try {
- $activity = Activity::find($id);
-
- if (Input::has('update_activity_information')) {
- /** Validation rules */
- $validator = Validator::make(
- array(
- 'name' => Input::get('name'),
- 'description' => Input::get('description'),
- 'date' => Input::get('date'),
- ),
- array(
- 'name' => 'required|unique:activities,course_id,' . $id,
- 'description' => 'required|min:10',
- 'date' => 'required|dateFormat:Y-m-d'
- ),
- array(
- 'date.dateFormat' => 'The date does not match the correct format: yyyy-mm-dd.'
- )
- );
-
- /** If validation fails */
- if ($validator->fails()) {
- /** Prepare error message */
- $message = 'Error(s) updating the Activity<ul>';
-
- foreach ($validator->messages()->all('<li>:message</li>') as $validationError) {
- $message .= $validationError;
- }
-
- $message .= '</ul>';
-
- /** Send error message and old data */
- Session::flash('status', 'warning');
- Session::flash('message', $message);
- return Redirect::back()->withInput();
- }
-
- /** Update activity info */
- $activity->name = Input::get('name');
- $activity->description = Input::get('description');
- $activity->date = Input::get('date');
- } elseif (Input::has('update_transforming_actions')) {
- if (trim(Input::get('transforming_actions')) != "")
- $activity->transforming_actions = Input::get('transforming_actions');
- else
- $activity->transforming_actions = NULL;
- } elseif (Input::has('update_assessment_comments')) {
- if (trim(Input::get('assessment_comments')) != "")
- $activity->assessment_comments = Input::get('assessment_comments');
- else
- $activity->assessment_comments = NULL;
- } else {
- Session::flash('status', 'danger');
- Session::flash('message', 'Error updating Activity. Please try again later.');
- return Redirect::action('ActivitiesController@show', array($activity->id));
- }
-
- $activity->save();
-
- /** If activity is saved, send success message */
- Session::flash('status', 'success');
- Session::flash('message', 'Activity succesfully updated.');
- return Redirect::action('ActivitiesController@show', array($activity->id));
- } catch (Exception $e) {
- Session::flash('status', 'warning');
- Session::flash('message', 'Error updating Activity. Please try again later.');
- return Redirect::action('ActivitiesController@show', array($activity->id));
- }
- }
-
- //TODO the code in the next 2 functions is the same as the assess function except for the view returned. try to refactor this to avoid copying code.
-
- public function viewAssessment($id)
- {
- $activity = Activity::find($id);
-
- // If activity does not exist, display 404
- if (!$activity)
- App::abort('404');
-
- // Get activity's course
- $course = Course::where('id', '=', $activity->course_id)->firstOrFail();
-
- // If activity does not belong to the requesting user, display 403
- if ($course->user_id != Auth::id())
- App::abort('403', 'Access Forbidden');
-
- $title = 'Assessment Sheet';
- $students = $course->students;
-
- // Get rubric contents
- $rubric_contents = Rubric::select('contents')->where('id', '=', $activity->rubric_id)->get();
- $rubric_contents = json_decode($rubric_contents['0']->contents);
-
- $rubric = Rubric::find($activity->rubric[0]->id);
-
- // Get results
- $assessments = DB::table('assessments')->where('activity_id', '=', $activity->id)->orderBy('id', 'asc')->get();
-
- // Decode the scores (blade workaround)
- $scores_array = array();
- foreach ($assessments as $index => $assessment) {
- $scores_array[$assessment->id] = json_decode($assessment->scores, true);
- }
-
- return View::make('local.professors.view_assessment', compact('activity', 'title', 'students', 'course', 'rubric_contents', 'assessments', 'scores_array', 'rubric'));
- }
-
- public function printAssessment($id)
- {
- $activity = Activity::find($id);
-
- // If activity does not exist, display 404
- if (!$activity)
- App::abort('404');
-
- // Get activity's course
- $course = Course::where('id', '=', $activity->course_id)->firstOrFail();
-
- // If activity does not belong to the requesting user, display 403
- if ($course->user_id != Auth::id())
- App::abort('403', 'Access Forbidden');
-
- $title = 'Assessment Sheet';
- $students = $course->students;
-
- // Get rubric contents
- $rubric_contents = Rubric::select('contents')->where('id', '=', $activity->rubric_id)->get();
- $rubric_contents = json_decode($rubric_contents['0']->contents);
-
- $rubric = Rubric::find($activity->rubric_id);
-
- // Get results
- $assessments = DB::table('assessments')->where('activity_id', '=', $activity->id)->orderBy('id', 'asc')->get();
-
- // Decode the scores (blade workaround)
- $scores_array = array();
- foreach ($assessments as $index => $assessment) {
- $scores_array[$assessment->id] = json_decode($assessment->scores, true);
- }
-
- return View::make('local.professors.print_assessment', compact('activity', 'title', 'students', 'course', 'rubric_contents', 'assessments', 'scores_array', 'rubric'));
- }
- }
|