Нема описа

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. <?php
  2. class Activity extends Eloquent
  3. {
  4. public function section()
  5. {
  6. return $this->belongsTo('Section');
  7. }
  8. public function rubric()
  9. {
  10. // return $this->belongsTo('Rubric');
  11. return $this->belongsToMany('Rubric', 'rubric_activity');
  12. }
  13. public function course()
  14. {
  15. return $this->belongsTo('Course');
  16. }
  17. public function assessed_students()
  18. {
  19. return $this->belongsToMany('Student', 'assessments')->withPivot('scores', 'percentage')->withTimestamps();
  20. }
  21. public function amount_of_assessed_students()
  22. {
  23. $activity_criterion = DB::table('activity_criterion')->where('activity_id', '=', $this->id)->lists('id');
  24. $amount_of_students = DB::table('assessments')->whereIn('activity_criterion_id', $activity_criterion)->lists('student_id');
  25. return count($amount_of_students);
  26. }
  27. public function criteria_achieved()
  28. {
  29. $activity_criterion = DB::table('activity_criterion')
  30. ->where('activity_id', '=', $this->id)
  31. ->get();
  32. $criteria_achieved = [];
  33. foreach ($activity_criterion as $index => $single_ac) {
  34. $assessments_passed = count(DB::table('assessments')
  35. ->where('score', '>=', $this->rubric[0]->expected_points)
  36. ->where('activity_criterion_id', '=', $single_ac->id)
  37. ->lists('student_id'));
  38. $assessments_attempted = count(DB::table('assessments')
  39. ->where('activity_criterion_id', '=', $single_ac->id)
  40. ->lists('student_id'));
  41. if ($assessments_attempted != 0 && (($assessments_passed / $assessments_attempted) * 100) >= $this->rubric[0]->expected_percentage) {
  42. $criteria_achieved[$single_ac->criterion_id] = 1;
  43. } else {
  44. $criteria_achieved[$single_ac->criterion_id] = 0;
  45. }
  46. }
  47. return $criteria_achieved;
  48. }
  49. // cap_array
  50. public function getCapArrayAttribute()
  51. {
  52. $criteria_achieved_percentage = [];
  53. $criterias = DB::table('criteria')
  54. ->join('activity_criterion', 'activity_criterion.criterion_id', '=', 'criteria.id')
  55. ->join('assessments', 'activity_criterion.id', '=', 'assessments.activity_criterion_id')
  56. ->where('activity_criterion.activity_id', '=', $this->id)
  57. ->select(
  58. array(
  59. 'activity_criterion.id as id',
  60. 'activity_criterion.criterion_id as criterion_id',
  61. 'activity_criterion.activity_id as activity_id'
  62. )
  63. )
  64. ->addSelect('criteria.name', 'criteria.subcriteria')
  65. ->get();
  66. foreach ($criterias as $index => $single_crit) {
  67. $single_crit->outcome_id = json_encode(DB::table('criterion_objective_outcome')
  68. ->where('criterion_id', '=', $single_crit->criterion_id)
  69. ->lists('outcome_id'));
  70. $amount_of_students = count(DB::table('assessments')
  71. ->where("activity_criterion_id", '=', $single_crit->id)
  72. ->lists('student_id'));
  73. $student_pass = DB::table('assessments')
  74. ->where("activity_criterion_id", '=', $single_crit->id)
  75. ->where('score', '>=', $this->rubric[0]->expected_points)
  76. ->lists('student_id');
  77. $amount_of_students_passed = count(DB::table('assessments')
  78. ->where("activity_criterion_id", '=', $single_crit->id)
  79. ->where('score', '>=', $this->rubric[0]->expected_points)
  80. ->lists('student_id'));
  81. $single_crit->score_percentage = ($amount_of_students_passed / $amount_of_students) * 100;
  82. $criteria_achieved_percentage[$single_crit->criterion_id] = $single_crit;
  83. }
  84. return $criteria_achieved_percentage;
  85. }
  86. public function allActivityCriterionInfo()
  87. {
  88. $activity_criterion = DB::table('activity_criterion')
  89. ->join('criteria', 'criteria.id', '=', 'activity_criterion.criterion_id')
  90. ->where('activity_id', $this->id)
  91. ->select('activity_criterion.activity_id', 'activity_criterion.criterion_id', 'criteria.*')
  92. ->distinct()
  93. ->get();
  94. return $activity_criterion;
  95. }
  96. public function getOutcomeReport()
  97. {
  98. $outcomes = DB::table('activity_criterion')
  99. ->join('criterion_objective_outcome', 'activity_criterion.criterion_id', '=', 'criterion_objective_outcome.criterion_id')
  100. ->join('outcomes', 'outcomes.id', '=', 'criterion_objective_outcome.outcome_id')
  101. ->where('activity_criterion.activity_id', $this->id)
  102. ->select('outcomes.*')
  103. ->distinct()
  104. ->get();
  105. $rubric = $this->rubric[0];
  106. /*
  107. foreach($outcomes as $outcome){
  108. $ac_criteria = DB::table('criterion_objective_outcome as cobo')
  109. ->join('activity_criterion as ac','ac.criterion_id','=','cobo.criterion_id')
  110. ->where("outcome_id",$outcome->id)
  111. ->where("activity_id",$this->id)
  112. ->select('ac.*')
  113. ->distinct()
  114. ->get();
  115. $conteo_de_criterios = 0;
  116. $students_who_achieved =[];
  117. $outcome->students_attempted = DB::table("assessments")
  118. ->join("activity_criterion as ac", 'ac.id','=','assessments.activity_criterion_id')
  119. ->join("criterion_objective_outcome as cobo",'cobo.criterion_id','=','ac.criterion_id')
  120. ->where('outcome_id',$outcome->id)
  121. ->where('ac.activity_id',$this->id)
  122. ->count();
  123. foreach($ac_criteria as $criterion){
  124. $students_attempted = Criterion::students_attempted($criterion->criterion_id, $this->id);
  125. $students_achieved = DB::table('assessments')
  126. ->join('activity_criterion', 'assessments.activity_criterion_id', '=', 'activity_criterion.id')
  127. ->where('activity_criterion.id', $criterion->id)
  128. ->where('assessments.score', '>=', $rubric->expected_points)
  129. ->lists("student_id");
  130. if((count($students_achieved)/$students_attempted) * 100 >$rubric->expected_percentage){
  131. foreach($students_achieved as $stu_id){
  132. if(!array_key_exists($stu_id, $students_who_achieved)){
  133. $students_who_achieved[$stu_id] = 1;
  134. }
  135. }
  136. $conteo_de_criterios++;
  137. }
  138. }
  139. $outcome->students_achieved = count($students_who_achieved);
  140. }*/
  141. /* $students_attempted = DB::table('assessments')
  142. ->join('activity_criterion', 'assessments.activity_criterion_id', '=', 'activity_criterion.id')
  143. ->where('activity_criterion.activity_id', $this->id)
  144. ->get();*/
  145. foreach ($outcomes as $outcome) {
  146. $ac_criteria = DB::table('criterion_objective_outcome as cobo')
  147. ->join('activity_criterion as ac', 'ac.criterion_id', '=', 'cobo.criterion_id')
  148. ->where("outcome_id", $outcome->id)
  149. ->where("activity_id", $this->id)
  150. ->select('ac.*')
  151. ->distinct()
  152. ->lists('id');
  153. /*$student_achieved = DB::table('assessments')
  154. ->whereIn('activity_criterion_id', $ac_criteria)
  155. ->where('score', '>=', $rubric->expected_points)
  156. ->groupBy('student_id')
  157. ->select('student_id', 'count(activity_criterion_id)');
  158. $students_attempted = DB::table('assessments as a')
  159. ->whereIn('a.activity_criterion_id', $ac_criteria)
  160. ->groupBy('a.student_id')
  161. ->leftJoin('assessments as b', function ($join) use ($ac_criteria, $rubric) {
  162. $join->on('b.student_id', '=', 'a.student_id')
  163. ->where('b.activity_criterion_id', '=', 'a.activity_criterion_id')
  164. ->where('b.score', '>=', $rubric->expected_points);
  165. })
  166. ->select('a.student_id', DB::raw('count(`a`.`activity_criterion_id`) attempted'), DB::raw('count(`b`.`activity_criterion_id`) achieved'));
  167. Log::info($students_attempted->get());*/
  168. $students_attempted = DB::table('assessments as a')
  169. ->whereIn('a.activity_criterion_id', $ac_criteria)
  170. ->groupBy('a.student_id')
  171. ->select(
  172. 'a.student_id',
  173. DB::raw('count(`a`.`activity_criterion_id`) attempted'),
  174. DB::raw("count(case when score >= {$rubric->expected_points} then 1 else null end) as achieved")
  175. )->get();
  176. $outcome->attempted = count($students_attempted);
  177. $conteo_outcome_achieved = 0;
  178. foreach ($students_attempted as $student) {
  179. Log::info($student->achieved / $student->attempted * 100);
  180. if ($student->achieved / $student->attempted * 100 >= $outcome->expected_outcome) {
  181. $conteo_outcome_achieved++;
  182. }
  183. }
  184. $outcome->achieved = $conteo_outcome_achieved;
  185. $outcome->percentage = round(($outcome->achieved / $outcome->attempted * 100), 2);
  186. /*foreach ($students_attempted as $student) {
  187. $student_criteria[$student];
  188. }
  189. $conteo_de_criterios = 0;
  190. $students_who_achieved = [];
  191. foreach ($ac_criteria as $ac) {
  192. $students_attempted = DB::table("assessments")
  193. ->where('activity_criterion_id', $ac->id)
  194. ->get();
  195. }*/
  196. }
  197. return $outcomes;
  198. }
  199. // o_ach_array
  200. public function getOAchArrayAttribute($value)
  201. {
  202. /*
  203. $outcomes_achieved = [];
  204. $all_criterion = DB::table('activity_criterion')
  205. ->where('activity_criterion.activity_id', '=', $this->id)
  206. ->get();
  207. $attempted_criteria = 0;
  208. $passed_criteria = 0;
  209. $all_outcomes = DB::table('outcomes')->get();
  210. foreach ($all_criterion as $index => $activity_crit) {
  211. $amount_of_outcomes_attempted = DB::table('criterion_objective_outcome')
  212. ->join('outcomes', 'outcomes.id', '=', 'criterion_objective_outcome.outcome_id')
  213. ->where('criterion_id', '=', $activity_crit->criterion_id)
  214. ->select('criterion_objective_outcome.outcome_id')
  215. ->distinct()
  216. ->orderBy('criterion_objective_outcome.outcome_id')
  217. ->select('outcomes.id', 'outcomes.expected_outcome')
  218. ->get();
  219. $passed_criteria = count(DB::table('assessments')
  220. ->where('activity_criterion_id', '=', $activity_crit->id)
  221. ->where('score', '>=', $this->rubric[0]->expected_points)
  222. ->lists('student_id'));
  223. $attempted_criteria = count(DB::table('assessments')
  224. ->where('activity_criterion_id', '=', $activity_crit->id)
  225. ->lists('student_id'));
  226. Log::info("For activity_crit " . ($activity_crit->id));
  227. $percent_for_criteria = ($passed_criteria / $attempted_criteria) * 100;
  228. Log::info('Percent calculated' . $percent_for_criteria);
  229. $percent_for_criteria = ($passed_criteria / $attempted_criteria) * 100;
  230. foreach ($amount_of_outcomes_attempted as $index2 => $outcome) {
  231. if ($percent_for_criteria >= $this->rubric[0]->expected_percentage) {
  232. if (array_key_exists($outcome->id, $outcomes_achieved)) $outcomes_achieved[$outcome->id] += 1;
  233. else $outcomes_achieved[$outcome->id] = 1;
  234. }
  235. }
  236. }
  237. return $outcomes_achieved;*/
  238. $outcomes_achieved = [];
  239. $criteria_achieved = $this->criteria_achieved();
  240. $all_outcomes = DB::table('outcomes')->lists('id');
  241. foreach ($all_outcomes as $outcome_id) {
  242. $outcomes_achieved[$outcome_id] = 0;
  243. }
  244. foreach ($criteria_achieved as $criterion_id => $passed) {
  245. if ($passed == 1) {
  246. $outcomes_related = DB::table('criterion_objective_outcome')
  247. ->where("criterion_id", '=', $criterion_id)
  248. ->select('outcome_id')
  249. ->distinct()
  250. ->lists('outcome_id');
  251. foreach ($outcomes_related as $index => $outcome_id) {
  252. $outcomes_achieved[$outcome_id] += 1;
  253. }
  254. }
  255. }
  256. return $outcomes_achieved;
  257. }
  258. public function is_assessed()
  259. {
  260. $all_criterion = DB::table('activity_criterion')
  261. ->where('activity_criterion.activity_id', '=', $this->id)
  262. ->lists('id');
  263. $assessments = DB::table('assessments')
  264. ->whereIn('activity_criterion_id', $all_criterion)
  265. ->lists('id');
  266. // return boolval(count($assessments));
  267. return (bool)(count($assessments));
  268. }
  269. public function isStudentAssessed($student_id)
  270. {
  271. return DB::table('activities')
  272. ->join('activity_criterion as ac', 'ac.activity_id', '=', 'activities.id')
  273. ->join('assessments', 'assessments.activity_criterion_id', '=', 'ac.id')
  274. ->where('activity_id', $this->id)
  275. ->where('student_id', $student_id)
  276. ->count();
  277. }
  278. public function transforming_actions()
  279. {
  280. $transformative_action = DB::table('activities')
  281. ->join('activity_criterion as ac', 'ac.activity_id', '=', 'activities.id')
  282. ->join('transformative_activity_criterion as tac', 'tac.activity_criterion_id', '=', 'ac.id')
  283. ->join('transformative_actions as ta', 'ta.id', '=', 'tac.trans_action_id')
  284. ->where('activities.id', $this->id)
  285. ->select('ta.*')
  286. ->first();
  287. if ($transformative_action)
  288. return $transformative_action->description;
  289. else return '';
  290. }
  291. // o_att_array
  292. public function getOAttArrayAttribute()
  293. {
  294. $outcomes_attempted = [];
  295. $all_criterion = DB::table('activity_criterion')
  296. ->where('activity_criterion.activity_id', '=', $this->id)
  297. ->lists('criterion_id');
  298. foreach ($all_criterion as $index => $criterion_id) {
  299. $amount_of_outcomes = DB::table('criterion_objective_outcome')
  300. ->where('criterion_id', '=', $criterion_id)
  301. ->select('criterion_objective_outcome.outcome_id')
  302. ->distinct()
  303. ->orderBy('criterion_objective_outcome.outcome_id')
  304. ->lists('outcome_id');
  305. foreach ($amount_of_outcomes as $index2 => $outcome_id) {
  306. if (array_key_exists($outcome_id, $outcomes_attempted)) $outcomes_attempted[$outcome_id] += 1;
  307. else $outcomes_attempted[$outcome_id] = 1;
  308. }
  309. }
  310. //return json_decode($this->outcomes_attempted, true);
  311. return $outcomes_attempted;
  312. }
  313. }