Няма описание

ActivitiesController.php 32KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743
  1. <?php
  2. use Illuminate\Database\Eloquent\Collection;
  3. class ActivitiesController extends \BaseController
  4. {
  5. /**
  6. * Save a new activity
  7. *
  8. * @param int $id The id of the parent course
  9. * @return Response Redirect to the parent course's page
  10. */
  11. public function create($id)
  12. {
  13. /** Validation rules */
  14. $validator = Validator::make(
  15. array(
  16. 'name' => Input::get('name'),
  17. 'description' => Input::get('description')
  18. ),
  19. array(
  20. 'name' => 'required|unique:activities,course_id,' . $id,
  21. 'description' => 'required|min:10'
  22. )
  23. );
  24. /** If validation fails */
  25. if ($validator->fails()) {
  26. /** Prepare error message */
  27. $message = 'Error(s) creating a new Activity<ul>';
  28. foreach ($validator->messages()->all('<li>:message</li>') as $validationError) {
  29. $message .= $validationError;
  30. }
  31. $message .= '</ul>';
  32. /** Send error message and old data */
  33. Session::flash('status', 'danger');
  34. Session::flash('message', $message);
  35. return Redirect::back()->withInput();
  36. } else {
  37. /** Instantiate new activity */
  38. $activity = new Activity;
  39. $activity->name = Input::get('name');
  40. $activity->description = Input::get('description');
  41. $activity->course_id = $id;
  42. $activity->date = date('Y-m-d');
  43. /** If activity is saved, send success message */
  44. if ($activity->save()) {
  45. Session::flash('status', 'success');
  46. Session::flash('message', 'Activity created.');
  47. return Redirect::action('ActivitiesController@show', array($activity->id));
  48. }
  49. /** If saving fails, send error message and old data */
  50. else {
  51. Session::flash('status', 'warning');
  52. Session::flash('message', 'Error adding Activity. Please try again later.');
  53. return Redirect::back()->withInput();
  54. }
  55. }
  56. }
  57. public function newCreate($course_id = null)
  58. {
  59. $title = 'Create Activity';
  60. $activity_types = [];
  61. $instruments = Rubric::all();
  62. $courses = Course::where('user_id', Auth::user()->id)->get();
  63. $outcomes = Outcome::with('objectives')->get();
  64. // var_dump($outcomes[0]->objectives);
  65. $objectives_by_outcome = Collection::make([]);
  66. $outcomes->each(function ($outcome) use (&$objectives_by_outcome) {
  67. // var_dump($outcome->objectives);
  68. $objectives_by_outcome->put($outcome->id, $outcome->objectives);
  69. // var_dump($objectives);
  70. });
  71. $criteria_by_objective = Collection::make([]);
  72. $objectives_by_outcome->each(function ($objectives) use (&$criteria_by_objective) {
  73. $objectives->each(function ($objective) use (&$criteria_by_objective) {
  74. $criteria_by_objective->put($objective->id, $objective->criteria);
  75. });
  76. });
  77. $transforming_actions = [];
  78. $course = Course::find($course_id);
  79. // var_dump($criteria_by_objective);
  80. // return $objectives->toJson();
  81. return View::make(
  82. 'local.managers.admins.new-activity-create',
  83. compact(
  84. 'title',
  85. 'course',
  86. 'activity_types',
  87. 'instruments',
  88. 'courses',
  89. 'outcomes',
  90. 'objectives_by_outcome',
  91. 'criteria_by_objective',
  92. 'transforming_actions'
  93. )
  94. );
  95. }
  96. /**
  97. *
  98. */
  99. public function show($id)
  100. {
  101. $activity = Activity::find($id);
  102. // If activity does not exist, display 404
  103. if (!$activity)
  104. App::abort('404');
  105. // Get activity's course
  106. $course = Course::where('id', '=', $activity->course_id)->firstOrFail();
  107. // If activity does not belong to the requesting user, display 403
  108. if ($course->user_id != Auth::id() and Auth::user()->role == 4)
  109. App::abort('403', 'Access Forbidden');
  110. // Get active semesters
  111. $active_semesters = array();
  112. $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();
  113. foreach ($active_semesters_collection as $active_semester) {
  114. $active_semesters[] = $active_semester->id;
  115. }
  116. Log::info($active_semesters);
  117. // 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
  118. $title = $course->code . $course->number . '-' . $course->section . ': ' . htmlspecialchars($activity->name, ENT_QUOTES) . ' <span class="small attention">(' . $course->semester->code . ')</span>';
  119. $outcomes = Outcome::orderBy('name', 'asc')->get();
  120. $outcomes_achieved = json_decode($activity->outcomes_achieved, true);
  121. $outcomes_attempted = json_decode($activity->outcomes_attempted, true);
  122. $tru = is_null($activity->rubric) ? "brr anuel" : "ye ye ye";
  123. Log::info($tru);
  124. Log::info(count($activity->rubric));
  125. return View::make('local.professors.activity', compact('activity', 'title', 'outcomes', 'outcomes_achieved', 'outcomes_attempted', 'course', 'student_count', 'active_semesters'));
  126. }
  127. public function assess($id)
  128. {
  129. $activity = Activity::find($id);
  130. // If activity does not exist, display 404
  131. if (!$activity)
  132. App::abort('404');
  133. // Get activity's course
  134. $course = Course::where('id', '=', $activity->course_id)->firstOrFail();
  135. // If activity does not belong to the requesting user, display 403
  136. if ($course->user_id != Auth::id())
  137. App::abort('403', 'Access Forbidden');
  138. $title = 'Assessment Sheet';
  139. $students = $course->students;
  140. // Get rubric contents
  141. $rubric = Rubric::find($activity->rubric[0]->id);
  142. Log::info($rubric);
  143. Log::info($activity);
  144. $criterion_rubric = DB::table('criteria')
  145. ->join("criterion_rubric", "criterion_rubric.criterion_id", "=", "criteria.id")
  146. ->where('criterion_rubric.rubric_id', '=', $rubric->id)->get();
  147. Log::info($criterion_rubric);
  148. foreach ($criterion_rubric as $index => $singleCR) {
  149. $singleCR->scales = json_encode(DB::table('scales')->join('rubric_criteria_scale', 'rubric_criteria_scale.scale_id', '=', 'scales.id')
  150. ->where('rubric_criteria_scale.rubric_criterion_id', '=', $singleCR->id)
  151. ->orderBy('position')
  152. ->lists('description'));
  153. }
  154. $criterion_rubric_ids = DB::table('criterion_rubric')->where('rubric_id', '=', $rubric->id)->lists('id');
  155. Log::info($rubric);
  156. Log::info($criterion_rubric);
  157. $scales = DB::table('scales')->join('rubric_criteria_scale', 'rubric_criteria_scale.scale_id', '=', 'scales.id')
  158. ->whereIn('rubric_criteria_scale.rubric_criterion_id', $criterion_rubric_ids)->get();
  159. // Get results
  160. $activity_criterion_ids = DB::table('activity_criterion')->where("activity_id", '=', $activity->id)->lists('id');
  161. Log::info($activity_criterion_ids);
  162. $assessments = DB::table('assessments')->join('students', 'assessments.student_id', '=', 'students.id')->whereIn('activity_criterion_id', $activity_criterion_ids)->orderBy('assessments.id', 'asc')->get();
  163. // Decode the scores (blade workaround)
  164. $scores_array = array();
  165. foreach ($assessments as $index => $assessment) {
  166. $scores_array[$assessment->id] = json_decode($assessment->scores, true);
  167. }
  168. Log::info(sizeof($criterion_rubric));
  169. return View::make('local.professors.assessment', compact('activity', 'title', 'students', 'course', 'criterion_rubric', 'assessments', 'scores_array', 'rubric', 'scales'));
  170. }
  171. public function saveAssessment()
  172. {
  173. try {
  174. $exception = DB::transaction(function () {
  175. DB::transaction(function () {
  176. // Student assessment data
  177. $student_data = json_decode(Input::get('student_scores'));
  178. // Outcome count
  179. $outcomeCount = Outcome::all()->count();
  180. // Activity
  181. $activity = Activity::find(Input::get('activity_id'));
  182. // Create or update student scores
  183. if ($activity->outcomes_attempted == NULL) {
  184. // For each student, save her/his assessment in the db
  185. foreach ($student_data as $single_student_data) {
  186. // Find student by id
  187. $student = Student::find($single_student_data->student_id);
  188. $comments = trim($single_student_data->comments);
  189. if ($comments == '') {
  190. $comments = NULL;
  191. }
  192. // Add the assessment to the pivot table
  193. $student->assessed_activities()->attach($activity->id, array(
  194. 'scores' => json_encode($single_student_data->scores),
  195. 'comments' => $single_student_data->comments
  196. ));
  197. }
  198. } else {
  199. // For each student, save her/his assessment in the db
  200. foreach ($student_data as $single_student_data) {
  201. // Find student by id
  202. $student = Student::find($single_student_data->student_id);
  203. $comments = trim($single_student_data->comments);
  204. if ($comments == '') {
  205. $comments = NULL;
  206. }
  207. // Update the assessment in the pivot table
  208. $student->assessed_activities()->updateExistingPivot($activity->id, array(
  209. 'scores' => json_encode($single_student_data->scores),
  210. 'percentage' => $single_student_data->percentage,
  211. 'comments' => $single_student_data->comments
  212. ));
  213. }
  214. }
  215. // Prepare arrays for criteria achievement for this activity
  216. $criteria_achievement = json_decode(Input::get('criteria_achievement'));
  217. $outcomes_attempted = array_fill(1, $outcomeCount, 0);
  218. $outcomes_achieved = array_fill(1, $outcomeCount, 0);
  219. // Fetch parent course's criteria achievement by outcome, if it exists
  220. $course = $activity->course;
  221. $course_outcomes_attempted = NULL;
  222. $course_outcomes_achieved = NULL;
  223. if ($course->outcomes_attempted == NULL) {
  224. $course_outcomes_attempted = array_fill(1, $outcomeCount, 0);
  225. $course_outcomes_achieved = array_fill(1, $outcomeCount, 0);
  226. } else {
  227. // the second argument is necessary to convert it into an array
  228. $course_outcomes_attempted = json_decode($course->outcomes_attempted, true);
  229. $course_outcomes_achieved = json_decode($course->outcomes_achieved, true);
  230. }
  231. foreach ($criteria_achievement as $criterion_id => $criterion_achieved) {
  232. // Find corresponding learning outcome
  233. $criterion = Criterion::withTrashed()->find($criterion_id);
  234. $outcome = Outcome::find($criterion->outcome_id);
  235. // If criterion is achieved (1), add 1 to all arrays
  236. if ($criterion_achieved === 1) {
  237. $outcomes_attempted[$outcome->id] += 1;
  238. $outcomes_achieved[$outcome->id] += 1;
  239. $course_outcomes_attempted[$outcome->id] += 1;
  240. $course_outcomes_achieved[$outcome->id] += 1;
  241. }
  242. // Else if it's 0, only add to the attempted outcomes arrays
  243. elseif ($criterion_achieved === 0) {
  244. $outcomes_attempted[$outcome->id] += 1;
  245. $course_outcomes_attempted[$outcome->id] += 1;
  246. }
  247. }
  248. // If all values are 0, throw exception
  249. if (count(array_unique($outcomes_attempted)) == 1 && $outcomes_attempted[1] == 0)
  250. throw new Exception("Error Processing Request", 1);
  251. // Set activity fields
  252. $activity->criteria_achieved = Input::get('criteria_achievement');
  253. $activity->criteria_achieved_percentage = Input::get('criteria_achieved_percentage');
  254. $activity->outcomes_attempted = json_encode($outcomes_attempted);
  255. $activity->outcomes_achieved = json_encode($outcomes_achieved);
  256. // Publish results if not a draft. That is, update the activity's course.
  257. if (Input::get('draft') == false) {
  258. // Update course
  259. $course->outcomes_achieved = json_encode($course_outcomes_achieved);
  260. $course->outcomes_attempted = json_encode($course_outcomes_attempted);
  261. $course->save();
  262. $activity->draft = false;
  263. } else {
  264. // Set draft to true
  265. $activity->draft = true;
  266. }
  267. // Save activity
  268. $activity->save();
  269. // Recalculate course outcomes
  270. $activities = DB::table('activities')
  271. ->where('course_id', $activity->course->id)
  272. ->where('draft', 0)
  273. ->get();
  274. // Check if any assessed activities remain
  275. $remainingAssessed = false;
  276. foreach ($activities as $activity1) {
  277. if ($activity1->outcomes_attempted != NULL) {
  278. $remainingAssessed = true;
  279. break;
  280. }
  281. }
  282. //If there are still evaluated activities in the course, recalculate course outcomes
  283. if (count($activities) && $remainingAssessed) {
  284. $outcomeCount = Outcome::all()->count();
  285. // Variables to hold recalculated outcomes for the course
  286. $course_outcomes_attempted = array_fill(1, $outcomeCount, 0);
  287. $course_outcomes_achieved = array_fill(1, $outcomeCount, 0);
  288. // For each activity
  289. foreach ($activities as $activity2) {
  290. // If activity has been assessed
  291. if ($activity2->outcomes_attempted != NULL) {
  292. // Get the achieved criteria
  293. $criteria_achievement = json_decode($activity2->criteria_achieved, true);
  294. foreach ($criteria_achievement as $criterion_id => $criterion_achieved) {
  295. // Find corresponding learning outcome;
  296. $criterion = Criterion::withTrashed()->find($criterion_id);
  297. $outcome = Outcome::find($criterion->outcome_id);
  298. // If criterion is achieved (1), add 1 to both arrays
  299. if ($criterion_achieved === 1) {
  300. $course_outcomes_attempted[$outcome->id] += 1;
  301. $course_outcomes_achieved[$outcome->id] += 1;
  302. }
  303. // Else, only add to the attempted outcomes arrays
  304. elseif ($criterion_achieved === 0) {
  305. $course_outcomes_attempted[$outcome->id] += 1;
  306. }
  307. }
  308. }
  309. }
  310. // Update course
  311. DB::table('courses')
  312. ->where('id', $course->id)
  313. ->update(array(
  314. 'outcomes_attempted' => json_encode($course_outcomes_attempted),
  315. 'outcomes_achieved' => json_encode($course_outcomes_achieved),
  316. 'updated_at' => date('Y-m-d H:i:s')
  317. ));
  318. }
  319. // Otherwise, set them all to NULL
  320. else {
  321. DB::table('courses')
  322. ->where('id', $course->id)
  323. ->update(array(
  324. 'outcomes_attempted' => NULL,
  325. 'outcomes_achieved' => NULL,
  326. 'updated_at' => date('Y-m-d H:i:s')
  327. ));
  328. }
  329. });
  330. });
  331. if (is_null($exception)) {
  332. Session::flash('status', 'success');
  333. Session::flash('message', 'Assessment Saved. To add transforming actions click "Transforming Actions".');
  334. return action('ActivitiesController@show', array(Input::get('activity_id')));
  335. }
  336. } catch (Exception $e) {
  337. Log::info('e:' . $e);
  338. echo $e->getMessage();
  339. Session::flash('status', 'danger');
  340. Session::flash('message', 'Error saving assessment. Try again later.');
  341. return action('ActivitiesController@show', array(Input::get('activity_id')));
  342. }
  343. }
  344. public function deleteAssessment()
  345. {
  346. try {
  347. $exception = DB::transaction(function () {
  348. $activity = DB::table('activities')->where('id', Input::get('id'))->first();
  349. $course = DB::table('courses')->where('id', $activity->course_id)->first();
  350. // Reset results in activity
  351. DB::table('activities')
  352. ->where('id', Input::get('id'))
  353. ->update(array(
  354. 'draft' => 0,
  355. 'outcomes_attempted' => NULL,
  356. 'outcomes_achieved' => NULL,
  357. 'criteria_achieved' => NULL,
  358. 'transforming_actions' => NULL,
  359. 'assessment_comments' => NULL,
  360. 'criteria_achieved_percentage' => NULL,
  361. 'updated_at' => date('Y-m-d H:i:s')
  362. ));
  363. // Delete students score
  364. DB::table('assessments')->where('activity_id', $activity->id)->delete();
  365. // Recalculate course outcomes
  366. $activities = DB::table('activities')
  367. ->where('course_id', $course->id)
  368. ->where('draft', 0)
  369. ->get();
  370. // Check if any assessed activties remain
  371. $remainingAssessed = false;
  372. foreach ($activities as $activity) {
  373. if ($activity->outcomes_attempted != NULL) {
  374. $remainingAssessed = true;
  375. break;
  376. }
  377. }
  378. //If there are still evaluated activities in the course, recalculate course outcomes
  379. if (count($activities) && $remainingAssessed) {
  380. $outcomeCount = Outcome::all()->count();
  381. // Variables to hold recalculated outcomes for the course
  382. $course_outcomes_attempted = array_fill(1, $outcomeCount, 0);
  383. $course_outcomes_achieved = array_fill(1, $outcomeCount, 0);
  384. // For each activity
  385. foreach ($activities as $activity) {
  386. // If activity has been assessed
  387. if ($activity->outcomes_attempted != NULL) {
  388. // Get the achieved criteria
  389. $criteria_achievement = json_decode($activity->criteria_achieved, true);
  390. foreach ($criteria_achievement as $criterion_id => $criterion_achieved) {
  391. // Find corresponding learning outcome;
  392. $criterion = Criterion::withTrashed()->find($criterion_id);
  393. $outcome = Outcome::find($criterion->outcome_id);
  394. // If criterion is achieved (1), add 1 to both arrays
  395. if ($criterion_achieved === 1) {
  396. $course_outcomes_attempted[$outcome->id] += 1;
  397. $course_outcomes_achieved[$outcome->id] += 1;
  398. }
  399. // Else, only add to the attempted outcomes arrays
  400. elseif ($criterion_achieved === 0) {
  401. $course_outcomes_attempted[$outcome->id] += 1;
  402. }
  403. }
  404. }
  405. }
  406. // Update course
  407. DB::table('courses')
  408. ->where('id', $course->id)
  409. ->update(array(
  410. 'outcomes_attempted' => json_encode($course_outcomes_attempted),
  411. 'outcomes_achieved' => json_encode($course_outcomes_achieved),
  412. 'updated_at' => date('Y-m-d H:i:s')
  413. ));
  414. }
  415. // Otherwise, set them all to NULL
  416. else {
  417. DB::table('courses')
  418. ->where('id', $course->id)
  419. ->update(array(
  420. 'outcomes_attempted' => NULL,
  421. 'outcomes_achieved' => NULL,
  422. 'updated_at' => date('Y-m-d H:i:s')
  423. ));
  424. }
  425. });
  426. if (is_null($exception)) {
  427. Session::flash('status', 'success');
  428. Session::flash('message', 'Assessment deleted.');
  429. return Redirect::back();
  430. }
  431. } catch (Exception $e) {
  432. Session::flash('status', 'danger');
  433. Session::flash('message', 'Error saving assessment. Try again later.');
  434. return Redirect::back();
  435. }
  436. }
  437. public function destroy($id)
  438. {
  439. $course = Activity::find($id)->course;
  440. if (Activity::destroy($id)) {
  441. // Recalculate course outcomes
  442. $activities = $course->activities;
  443. // Check if any assessed activties remain
  444. $remainingAssessed = false;
  445. foreach ($course->activities as $activity) {
  446. if ($activity->outcomes_attempted != NULL) {
  447. $remainingAssessed = true;
  448. break;
  449. }
  450. }
  451. //If there are still evaluated activities in the course, recalculate course outcomes
  452. if (!$course->activities->isEmpty() && $remainingAssessed) {
  453. $outcomeCount = Outcome::all()->count();
  454. // Variables to hold recalculated outcomes for the course
  455. $course_outcomes_attempted = array_fill(1, $outcomeCount, 0);
  456. $course_outcomes_achieved = array_fill(1, $outcomeCount, 0);
  457. // For each activity
  458. foreach ($activities as $activity) {
  459. // If activity has been assessed
  460. if ($activity->outcomes_attempted != NULL) {
  461. // Get the achieved criteria
  462. $criteria_achievement = json_decode($activity->criteria_achieved, true);
  463. foreach ($criteria_achievement as $criterion_id => $criterion_achieved) {
  464. // Find corresponding learning outcome;
  465. $criterion = Criterion::withTrashed()->find($criterion_id);
  466. $outcome = Outcome::find($criterion->outcome_id);
  467. // If criterion is achieved (1), add 1 to both arrays
  468. if ($criterion_achieved === 1) {
  469. $course_outcomes_attempted[$outcome->id] += 1;
  470. $course_outcomes_achieved[$outcome->id] += 1;
  471. }
  472. // Else, only add to the attempted outcomes arrays
  473. elseif ($criterion_achieved === 0) {
  474. $course_outcomes_attempted[$outcome->id] += 1;
  475. }
  476. }
  477. }
  478. }
  479. // Update course
  480. $course->outcomes_achieved = json_encode($course_outcomes_achieved);
  481. $course->outcomes_attempted = json_encode($course_outcomes_attempted);
  482. } else {
  483. $course->outcomes_achieved = NULL;
  484. $course->outcomes_attempted = NULL;
  485. }
  486. if ($course->save()) {
  487. Session::flash('status', 'success');
  488. Session::flash('message', 'Activity deleted.');
  489. } else {
  490. Session::flash('status', 'danger');
  491. Session::flash('message', 'Error deleting activity. Try again later.');
  492. return Redirect::back();
  493. }
  494. return Redirect::action('CoursesController@show', array($course->id));
  495. } else {
  496. Session::flash('status', 'danger');
  497. Session::flash('message', 'Error deleting activity. Try again later.');
  498. return Redirect::back();
  499. }
  500. }
  501. public function update($id)
  502. {
  503. try {
  504. $activity = Activity::find($id);
  505. if (Input::has('update_activity_information')) {
  506. /** Validation rules */
  507. $validator = Validator::make(
  508. array(
  509. 'name' => Input::get('name'),
  510. 'description' => Input::get('description'),
  511. 'date' => Input::get('date'),
  512. ),
  513. array(
  514. 'name' => 'required|unique:activities,course_id,' . $id,
  515. 'description' => 'required|min:10',
  516. 'date' => 'required|dateFormat:Y-m-d'
  517. ),
  518. array(
  519. 'date.dateFormat' => 'The date does not match the correct format: yyyy-mm-dd.'
  520. )
  521. );
  522. /** If validation fails */
  523. if ($validator->fails()) {
  524. /** Prepare error message */
  525. $message = 'Error(s) updating the Activity<ul>';
  526. foreach ($validator->messages()->all('<li>:message</li>') as $validationError) {
  527. $message .= $validationError;
  528. }
  529. $message .= '</ul>';
  530. /** Send error message and old data */
  531. Session::flash('status', 'warning');
  532. Session::flash('message', $message);
  533. return Redirect::back()->withInput();
  534. }
  535. /** Update activity info */
  536. $activity->name = Input::get('name');
  537. $activity->description = Input::get('description');
  538. $activity->date = Input::get('date');
  539. } elseif (Input::has('update_transforming_actions')) {
  540. if (trim(Input::get('transforming_actions')) != "")
  541. $activity->transforming_actions = Input::get('transforming_actions');
  542. else
  543. $activity->transforming_actions = NULL;
  544. } elseif (Input::has('update_assessment_comments')) {
  545. if (trim(Input::get('assessment_comments')) != "")
  546. $activity->assessment_comments = Input::get('assessment_comments');
  547. else
  548. $activity->assessment_comments = NULL;
  549. } else {
  550. Session::flash('status', 'danger');
  551. Session::flash('message', 'Error updating Activity. Please try again later.');
  552. return Redirect::action('ActivitiesController@show', array($activity->id));
  553. }
  554. $activity->save();
  555. /** If activity is saved, send success message */
  556. Session::flash('status', 'success');
  557. Session::flash('message', 'Activity succesfully updated.');
  558. return Redirect::action('ActivitiesController@show', array($activity->id));
  559. } catch (Exception $e) {
  560. Session::flash('status', 'warning');
  561. Session::flash('message', 'Error updating Activity. Please try again later.');
  562. return Redirect::action('ActivitiesController@show', array($activity->id));
  563. }
  564. }
  565. //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.
  566. public function viewAssessment($id)
  567. {
  568. $activity = Activity::find($id);
  569. // If activity does not exist, display 404
  570. if (!$activity)
  571. App::abort('404');
  572. // Get activity's course
  573. $course = Course::where('id', '=', $activity->course_id)->firstOrFail();
  574. // If activity does not belong to the requesting user, display 403
  575. if ($course->user_id != Auth::id())
  576. App::abort('403', 'Access Forbidden');
  577. $title = 'Assessment Sheet';
  578. $students = $course->students;
  579. // Get rubric contents
  580. $rubric_contents = Rubric::select('contents')->where('id', '=', $activity->rubric_id)->get();
  581. $rubric_contents = json_decode($rubric_contents['0']->contents);
  582. $rubric = Rubric::find($activity->rubric[0]->id);
  583. // Get results
  584. $assessments = DB::table('assessments')->where('activity_id', '=', $activity->id)->orderBy('id', 'asc')->get();
  585. // Decode the scores (blade workaround)
  586. $scores_array = array();
  587. foreach ($assessments as $index => $assessment) {
  588. $scores_array[$assessment->id] = json_decode($assessment->scores, true);
  589. }
  590. return View::make('local.professors.view_assessment', compact('activity', 'title', 'students', 'course', 'rubric_contents', 'assessments', 'scores_array', 'rubric'));
  591. }
  592. public function printAssessment($id)
  593. {
  594. $activity = Activity::find($id);
  595. // If activity does not exist, display 404
  596. if (!$activity)
  597. App::abort('404');
  598. // Get activity's course
  599. $course = Course::where('id', '=', $activity->course_id)->firstOrFail();
  600. // If activity does not belong to the requesting user, display 403
  601. if ($course->user_id != Auth::id())
  602. App::abort('403', 'Access Forbidden');
  603. $title = 'Assessment Sheet';
  604. $students = $course->students;
  605. // Get rubric contents
  606. $rubric_contents = Rubric::select('contents')->where('id', '=', $activity->rubric_id)->get();
  607. $rubric_contents = json_decode($rubric_contents['0']->contents);
  608. $rubric = Rubric::find($activity->rubric_id);
  609. // Get results
  610. $assessments = DB::table('assessments')->where('activity_id', '=', $activity->id)->orderBy('id', 'asc')->get();
  611. // Decode the scores (blade workaround)
  612. $scores_array = array();
  613. foreach ($assessments as $index => $assessment) {
  614. $scores_array[$assessment->id] = json_decode($assessment->scores, true);
  615. }
  616. return View::make('local.professors.print_assessment', compact('activity', 'title', 'students', 'course', 'rubric_contents', 'assessments', 'scores_array', 'rubric'));
  617. }
  618. }