No Description

RubricsController.php 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. <?php
  2. class RubricsController extends \BaseController
  3. {
  4. /**
  5. * Show the form for creating a new rubric
  6. *
  7. * @return Response
  8. */
  9. public function newRubric($activity_id)
  10. {
  11. $activity = Activity::find($activity_id);
  12. // If activity does not exist, display 404
  13. if (!$activity)
  14. App::abort('404');
  15. $title = 'Rubric for <em>' . $activity->name . '</em>';
  16. // Select templates that belong to everyone or belong to the activity's course's school
  17. $templates = Template::where('is_visible', '=', 1)
  18. ->where(function ($query) use ($activity) {
  19. if (Auth::user()->role != 1) {
  20. $query
  21. ->where('school_id', $activity->course->program->school->id)
  22. ->orWhere('school_id', '=', NULL);
  23. }
  24. })
  25. ->orderBy('name', 'ASC')->get();
  26. $rubrics = Auth::user()->rubrics;
  27. $outcomes = Outcome::orderBy('name', 'ASC')->get();
  28. $criteria = Criterion::orderBy('name', 'ASC')->get();
  29. $rubric = $activity->rubric;
  30. Log::info($rubric);
  31. Log::info($activity->rubric_id);
  32. Log::info($activity->rubric[0]->id);
  33. return View::make('local.professors.rubrics', compact('title', 'templates', 'outcomes', 'criteria', 'rubrics', 'activity', 'rubric'));
  34. }
  35. public function newOtherMethod($activity_id)
  36. {
  37. $activity = Activity::find($activity_id);
  38. // If activity does not exist, display 404
  39. if (!$activity)
  40. App::abort('404');
  41. $title = 'Rubric for <em>' . $activity->name . '</em>';
  42. // Select templates that belong to everyone or belong to the activity's course's school
  43. $templates = Template::where('is_visible', '=', 1)
  44. ->where(function ($query) use ($activity) {
  45. if (Auth::user()->role != 1) {
  46. $query
  47. ->where('school_id', $activity->course->program->school->id)
  48. ->orWhere('school_id', '=', NULL);
  49. }
  50. })
  51. ->orderBy('name', 'ASC')->get();
  52. $rubrics = Auth::user()->rubrics;
  53. $outcomes = Outcome::orderBy('name', 'ASC')->get();
  54. $criteria = Criterion::orderBy('name', 'ASC')->get();
  55. $rubric = $activity->rubric;
  56. return View::make('local.professors.rubrics', compact('title', 'templates', 'outcomes', 'criteria', 'rubrics', 'activity', 'rubric'));
  57. }
  58. /**
  59. * Save a new rubric
  60. *
  61. * @return Response
  62. */
  63. public function create()
  64. {
  65. DB::beginTransaction();
  66. // Get rubric contents
  67. $scales = Input::get('scales');
  68. $criteria = Input::get('criteria');
  69. // Process rubric
  70. $rubric = new Rubric;
  71. $rubric->name = Input::get('name');
  72. $rubric->expected_percentage = Input::get('expected_percentage');
  73. $rubric->expected_points = Input::get('expected_points');
  74. $rubric->user_id = Auth::id();
  75. $rubric->num_scales = count($scales[0]);
  76. $rubric->max_score = Input::get('max_score');
  77. $division = $rubric->max_score / count($scales[0]);
  78. if ($rubric->save()) {
  79. // Process activity
  80. // $activity = Activity::find(Input::get('activity_id'));
  81. // $activity->rubric_id = $rubric->id;
  82. // $activity->save();
  83. DB::table('rubric_activity')->insert(array('activity_id' => Input::get('activity_id'), 'rubric_id' => $rubric->id));
  84. DB::commit();
  85. $rubricId = $rubric->id;
  86. foreach ($criteria as $index => $criterion_id) {
  87. DB::insert("insert into criterion_rubric (`rubric_id`,`criterion_id`) values ({$rubricId},{$criterion_id})");
  88. DB::commit();
  89. $rubric_criterion_id = DB::table('criterion_rubric')->where('rubric_id', '=', $rubricId)
  90. ->where('criterion_id', '=', $criterion_id)->first();
  91. for ($i = 0; $i < count($scales[$index]); $i++) {
  92. $scale = Scale::where('description', '=', $scales[$index][$i])
  93. ->where('max_score', '=', ($division * ($i + 1)))
  94. ->where("min_score", '=', (1 + ($division * $i)))->first();
  95. Log::info($scale);
  96. if ($scale) {
  97. DB::insert("insert into `rubric_criteria_scale` (`rubric_criterion_id`, `scale_id`, `position`) values ({$rubric_criterion_id->id},{$scale->id}, {$i})");
  98. DB::commit();
  99. } else {
  100. $scale = new Scale;
  101. $scale->description = $scales[$index][$i];
  102. $scale->min_score = 1 + ($division * $i);
  103. $scale->max_score = ($division * ($i + 1));
  104. if ($scale->save()) {
  105. DB::insert("insert into `rubric_criteria_scale` (`rubric_criterion_id`, `scale_id`, `position`) values ({$rubric_criterion_id->id},{$scale->id}, {$i})");
  106. DB::commit();
  107. } else {
  108. Session::flash('status', 'danger');
  109. Session::flash('message', 'Rubric could not be created.');
  110. }
  111. }
  112. }
  113. $activity_id = Input::get("activity_id");
  114. DB::insert("insert into `activity_criterion` (`activity_id`,`criterion_id`) values ({$activity_id}, {$criterion_id})");
  115. DB::commit();
  116. }
  117. Session::flash('status', 'success');
  118. Session::flash('message', 'Rubric assigned.');
  119. return action('ActivitiesController@show', array(Input::get('activity_id')));
  120. } else {
  121. DB::rollBack();
  122. Session::flash('status', 'danger');
  123. Session::flash('message', 'Error creating Rubric. Try again later.' . $e);
  124. }
  125. }
  126. /**
  127. * Return a specific template
  128. *
  129. * @return Template
  130. */
  131. public function fetch()
  132. {
  133. return Rubric::find(Input::get('id'));
  134. }
  135. /**
  136. * Update a rubric
  137. *
  138. * @return Response
  139. */
  140. public function update()
  141. {
  142. Log::info('entré???');
  143. $rubric = Rubric::find(Input::get('id'));
  144. $scales = Input::get('scales');
  145. $criteria = Input::get('criteria');
  146. // Process rubric
  147. $rubric->name = Input::get('name');
  148. $rubric->expected_percentage = Input::get('expected_percentage');
  149. $rubric->expected_points = Input::get('expected_points');
  150. $rubric->num_scales = count($scales[0]);
  151. $rubric->max_score = Input::get('max_score');
  152. $division = $rubric->max_score / count($scales[0]);
  153. DB::beginTransaction();
  154. // Get associated activity
  155. //$activity = Activity::where('rubric_id', '=', $rubric->id)->first();
  156. $activity_id = DB::table('activities')
  157. ->join('rubric_activity', 'rubric_activity.activity_id', '=', 'activities.id')
  158. ->where('rubric_id', '=', $rubric->id)
  159. ->first();
  160. $activity = Activity::where('id', '=', $activity_id->activity_id)->first();
  161. // If the associated activity has been assessed, delete the records
  162. if ($activity->outcomes_attempted != NULL) {
  163. DB::table('assessments')->where('activity_id', '=', $activity->id)->delete();
  164. $activity->criteria_achieved_percentage = NULL;
  165. $activity->criteria_achieved = NULL;
  166. $activity->outcomes_achieved = NULL;
  167. $activity->outcomes_attempted = NULL;
  168. }
  169. Log::info('entré3???');
  170. $rubric->save();
  171. Log::info("????");
  172. $activity->save();
  173. Log::info("????22");
  174. // Get all the course's activities
  175. Log::info($activity->course);
  176. $course = Course::find($activity->course->id);
  177. $activities = $course->activities;
  178. // Check if any assessed activities remain
  179. $remainingAssessed = false;
  180. foreach ($course->activities as $activity) {
  181. if ($activity->outcomes_attempted != NULL) {
  182. $remainingAssessed = true;
  183. break;
  184. }
  185. }
  186. Log::info('entré4???');
  187. //If there are still evaluated activities in the course, recalculate course outcomes
  188. if (!$activities->isEmpty() && $remainingAssessed) {
  189. // Variables to hold recalculated outcomes for the course
  190. $course_outcomes_attempted = array_fill(1, Outcome::all()->count(), 0);
  191. $course_outcomes_achieved = array_fill(1, Outcome::all()->count(), 0);
  192. // For each activity
  193. foreach ($activities as $activity) {
  194. // If activity has been assessed
  195. if ($activity->outcomes_attempted != NULL) {
  196. // Get the achieved criteria
  197. $criteria_achievement = json_decode($activity->criteria_achieved, true);
  198. foreach ($criteria_achievement as $criterion_id => $criterion_achieved) {
  199. // Find corresponding learning outcome;
  200. $criterion = Criterion::find($criterion_id);
  201. $outcome = Outcome::find($criterion->outcome_id);
  202. // If criterion is achieved (1), add 1 to both arrays
  203. if ($criterion_achieved === 1) {
  204. $course_outcomes_attempted[$outcome->id] += 1;
  205. $course_outcomes_achieved[$outcome->id] += 1;
  206. }
  207. // Else, only add to the attempted outcomes arrays
  208. elseif ($criterion_achieved === 0) {
  209. $course_outcomes_attempted[$outcome->id] += 1;
  210. }
  211. }
  212. }
  213. }
  214. Log::info('entré5???');
  215. // Update course
  216. $course->outcomes_achieved = json_encode($course_outcomes_achieved);
  217. $course->outcomes_attempted = json_encode($course_outcomes_attempted);
  218. } else {
  219. // Update course
  220. $course->outcomes_achieved = NULL;
  221. $course->outcomes_attempted = NULL;
  222. }
  223. $course->save();
  224. Log::info('entré6???');
  225. DB::delete("delete from criterion_rubric where rubric_id ={$rubric->id}");
  226. foreach ($criteria as $index => $criterion_id) {
  227. if (
  228. DB::insert("insert into criterion_rubric (`rubric_id`, `criterion_id`) values ({$rubric->id}, {$criterion_id}) ")
  229. ) {
  230. Log::info("AHH");
  231. $rubric_criterion_id = DB::table('criterion_rubric')
  232. ->where('rubric_id', '=', $rubric->id)
  233. ->where('criterion_id', '=', $criterion_id)
  234. ->first();
  235. foreach ($scales[$index] as $in => $scale) {
  236. Log::info("AH2");
  237. $new_scale = Scale::where('description', '=', $scale)
  238. ->where('max_score', '=', ($division * ($in + 1)))
  239. ->where("min_score", '=', (1 + ($division * $in)))->first();
  240. if ($new_scale) {
  241. DB::insert("insert into `rubric_criteria_scale` (`rubric_criterion_id`, `scale_id`, `position`) values ({$rubric_criterion_id->id},{$new_scale->id}, {$in})");
  242. DB::commit();
  243. } else {
  244. $new_scale = new Scale;
  245. $new_scale->description = $scales[$index][$in];
  246. $new_scale->min_score = 1 + ($division * $in);
  247. $new_scale->max_score = ($division * ($in + 1));
  248. if ($new_scale->save()) {
  249. DB::insert("insert into `rubric_criteria_scale` (`rubric_criterion_id`, `scale_id`, `position`) values ({$rubric_criterion_id->id},{$new_scale->id}, {$in})");
  250. DB::commit();
  251. } else {
  252. DB::rollBack();
  253. Session::flash('status', 'danger');
  254. Session::flash('message', 'Rubric could not be created.');
  255. return action('ActivitiesController@show', array($activity->id));
  256. }
  257. }
  258. }
  259. } else {
  260. DB::rollBack();
  261. Session::flash('status', 'danger');
  262. Session::flash('message', 'Rubric could not be created.');
  263. return action('ActivitiesController@show', array($activity->id));
  264. }
  265. }
  266. Log::info('entré7???');
  267. DB::commit();
  268. Session::flash('status', 'success');
  269. Session::flash('message', 'Rubric updated.');
  270. return action('ActivitiesController@show', array($activity->id));
  271. }
  272. /**
  273. * Remove the specified resource from storage.
  274. *
  275. * @return Response
  276. */
  277. public function destroy()
  278. {
  279. $rubric = Rubric::find(Input::get('id'));
  280. if ($rubric->delete()) {
  281. Session::flash('status', 'success');
  282. Session::flash('message', 'Rubric deleted.');
  283. } else {
  284. Session::flash('status', 'danger');
  285. Session::flash('message', 'Error: The rubric could not be deleted. Try again later.');
  286. }
  287. return;
  288. }
  289. /**
  290. * Show a specific rubric
  291. *
  292. * @return Response
  293. */
  294. public function show($activity_id)
  295. {
  296. $activity = Activity::find($activity_id);
  297. // Get activity's course
  298. $course = Course::where('id', '=', $activity->course_id)->firstOrFail();
  299. // If activity does not belong to the requesting user, display 403
  300. if ($course->user_id != Auth::id())
  301. App::abort('403', 'Access Forbidden');
  302. Log::info($activity->rubric[0]->id);
  303. $rubric = Rubric::where('id', '=', $activity->rubric[0]->id)->firstOrFail();
  304. $criterion_rubric = DB::table('criteria')
  305. ->join('criterion_rubric', 'criterion_rubric.criterion_id', '=', 'criteria.id')
  306. ->where('criterion_rubric.rubric_id', '=', $activity->rubric[0]->id)
  307. ->get();
  308. foreach ($criterion_rubric as $single_cr) {
  309. $single_cr->scales = json_encode(DB::table('scales')
  310. ->join('rubric_criteria_scale', 'rubric_criteria_scale.scale_id', '=', 'scales.id')
  311. ->where('rubric_criteria_scale.rubric_criterion_id', '=', $single_cr->id)
  312. ->orderBy('position')
  313. ->lists('description'));
  314. $single_cr->outcomes = json_encode(DB::table('outcomes')
  315. ->join('criterion_objective_outcome', 'outcomes.id', '=', 'criterion_objective_outcome.outcome_id')
  316. ->where('criterion_objective_outcome.criterion_id', '=', $single_cr->criterion_id)->lists('name'));
  317. }
  318. Log::info($criterion_rubric);
  319. $title = $activity->name . ': ' . $rubric->name;
  320. return View::make('local.professors.viewrubric', compact('rubric', 'activity', 'criterion_rubric', 'title', 'course'));
  321. }
  322. /**
  323. * Show a specific rubric without some course and user information
  324. *
  325. * @return Response
  326. */
  327. public function show_limited($rubric_id)
  328. {
  329. // If user is a professor, display 403.
  330. if (Auth::user()->role == 4)
  331. App::abort('403', 'Access Forbidden');
  332. $rubric = Rubric::where('id', '=', $rubric_id)->firstOrFail();
  333. $title = $rubric->name;
  334. $role = Auth::user()->role;
  335. return View::make('local.managers.shared.view_rubric_limited', compact('rubric', 'title', 'role'));
  336. }
  337. public function download($activity_id, $rubric_id)
  338. {
  339. $activity = Activity::find($activity_id);
  340. // Get activity's course
  341. $course = Course::where('id', '=', $activity->course_id)->firstOrFail();
  342. // If activity does not belong to the requesting user, display 403
  343. if ($course->user_id != Auth::id())
  344. App::abort('403', 'Access Forbidden');
  345. $rubric = Rubric::where('id', '=', $activity->rubric_id)->firstOrFail();
  346. $title = $activity->name . ': ' . $rubric->name;
  347. return View::make('local.professors.downloadrubric', compact('rubric', 'activity', 'title', 'course'));
  348. }
  349. public function printview($activity_id, $rubric_id)
  350. {
  351. $activity = Activity::find($activity_id);
  352. // Get activity's course
  353. $course = Course::where('id', '=', $activity->course_id)->firstOrFail();
  354. // If activity does not belong to the requesting user, display 403
  355. if ($course->user_id != Auth::id())
  356. App::abort('403', 'Access Forbidden');
  357. $rubric = Rubric::where('id', '=', $activity->rubric_id)->firstOrFail();
  358. $title = $activity->name . ': ' . $rubric->name;
  359. return View::make('local.professors.printrubric', compact('rubric', 'activity', 'title', 'course'));
  360. }
  361. public function fetchRubricCriterion()
  362. {
  363. $rubric = Rubric::findOrFail(Input::get('rubric_id'));
  364. $criterion_id = Input::get('criterion_id');
  365. $rubric_contents = json_decode($rubric->contents);
  366. foreach ($rubric_contents as $key => $criterion) {
  367. if ($criterion->id == $criterion_id) {
  368. return json_encode($criterion);
  369. }
  370. }
  371. }
  372. }