暫無描述

Objective2Controller.php 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. <?php
  2. use Illuminate\Support\Facades\Auth;
  3. class Objective2Controller extends \BaseController
  4. {
  5. /**
  6. * Display a listing of the resource.
  7. *
  8. * @return Response
  9. */
  10. /**
  11. * Show the form for creating a new resource.
  12. *
  13. * @return Response
  14. */
  15. public function isObjectiveUnique($input, $existing_Objective = NULL)
  16. {
  17. Log::info('isObjectiveUnique');
  18. if (Input::get('program_id') != 0)
  19. $program_id = $input['program_id'];
  20. else
  21. $program_id = NULL;
  22. $saved_Objective = DB::table('objectives')->join('objective_outcome', 'objective_outcome.objective_id', '=', 'objectives.id')
  23. ->join('objective_program', 'objective_program.objective_id', '=', 'objectives.id')
  24. ->where('objectives.text', '=', $input['text'])
  25. ->whereIn('objective_outcome.outcome_id', $input['outcome_id'])
  26. ->whereIn('objective_program.program_id', $input['program_id'])
  27. ->get();
  28. if (count($saved_Objective))
  29. return false;
  30. else
  31. return true;
  32. }
  33. private function makeValidator($clean_input)
  34. {
  35. /** Validation rules */
  36. return Validator::make(
  37. array(
  38. 'text' => $clean_input['text'],
  39. 'outcome_id' => $clean_input['outcome_id'],
  40. 'program_id' => $clean_input['program_id']
  41. ),
  42. array(
  43. 'text' => 'required|string|unique:objectives',
  44. 'outcome_id' => 'required|array',
  45. 'program_id' => 'required|array'
  46. )
  47. );
  48. }
  49. private function cleanInput()
  50. {
  51. $clean_input = array();
  52. $clean_input['text'] = trim(preg_replace('/\t+/', '', Input::get('text')));
  53. $clean_input['outcome_id'] = Input::get('outcome');
  54. $counter = Input::get('counter') + 0;
  55. Log::info($clean_input);
  56. foreach ($clean_input['outcome_id'] as $index => $outcome_id) {
  57. $clean_input['outcome_id'][$index] = trim(preg_replace('/\t+/', '', $clean_input['outcome_id'][$index]));
  58. }
  59. $clean_input['program_id'] = Input::get('program_id');
  60. Log::info(Input::get('program_id'));
  61. return $clean_input;
  62. }
  63. private function cleanAssocInput()
  64. {
  65. $clean_input = array();
  66. $clean_input['text'] = trim(preg_replace('/\t+/', '', Input::get('text')));
  67. $clean_input['outcome_id'] = Input::get('assoc_outcome');
  68. Log::info(Input::all());
  69. $clean_input['program_id'] = Input::get('program_id');
  70. return $clean_input;
  71. }
  72. public function fetchObjective()
  73. {
  74. return Objective::find(Input::get('id'));
  75. }
  76. public function fetchObjectiveWithTrashed()
  77. {
  78. $json = array();
  79. $json['program'] = DB::select("select program_id from objective_program where objective_id = ?", array(Input::get('id')));
  80. $json['outcome'] = DB::select("select outcome_id from objective_outcome outc where outc.objective_id = ?", array(Input::get('id')));
  81. $json['objective'] = DB::select("select text, id from objectives where id =?", array(Input::get('id')));
  82. $json['assessment'] = DB::select("select * from assessments where activity_criterion_id in (select id from activity_criterion where criterion_id in (select criterion_id from criterion_objective_outcome where objective_id = ?))", array(Input::get('id')));
  83. $json['assoc_criteria'] = DB::select("select name from criteria where id in(select criterion_id from criterion_objective_outcome where objective_id =?)", array(Input::get('id')));
  84. Log::info('is here');
  85. // Log::info(json_encode($json));
  86. return json_encode($json);
  87. }
  88. public function fetchAllobjectives()
  89. {
  90. $program_id = Input::get('program_fetch');
  91. $outcome_id = Input::get('outcome_fetch');
  92. $json = array();
  93. $json['objective'] = DB::select("SELECT * FROM `objectives` where id in (select objective_id from objective_outcome where outcome_id ={$outcome_id}) and id in (select objective_id from objective_program where program_id = {$program_id} and objective_id <> 0)");
  94. Log::info('En mi sueño');
  95. Log::info($json);
  96. return json_encode($json);
  97. }
  98. public function delete()
  99. {
  100. DB::delete("delete from objectives where id = ?", array(Input::get('deleteObj')));
  101. return Redirect::to('objectives')->withInput();
  102. /*$role = Auth::user()['role'];
  103. switch ($role) {
  104. case 1:
  105. return Redirect::to('objectives')->withInput();
  106. case 2:
  107. return Redirect::to('school-objective')->withInput();
  108. case 3:
  109. return Redirect::to('program-objective')->withInput();
  110. }*/
  111. }
  112. /**
  113. * Create a new Objective.
  114. *
  115. * @return Redirect Redirect back to form page
  116. */
  117. public function create()
  118. {
  119. $clean_input = $this->cleanInput();
  120. /** Validation rules */
  121. $validator = $this->makeValidator($clean_input);
  122. /** If validation fails */
  123. if ($validator->fails()) {
  124. /** Prepare error message */
  125. $message = '<p>Error(s) creating a new Objective:</p><ul>';
  126. foreach ($validator->messages()->all('<li>:message</li>') as $validationError) {
  127. $message .= $validationError;
  128. }
  129. $message .= '</ul>';
  130. /** Send error message and old data */
  131. Session::flash('status', 'danger');
  132. Session::flash('message', $message);
  133. return Redirect::to('objectives')->withInput();
  134. /*$role = Auth::user()['role'];
  135. switch ($role) {
  136. case 1:
  137. return Redirect::to('objective')->withInput();
  138. case 2:
  139. return Redirect::to('school-objective')->withInput();
  140. case 3:
  141. return Redirect::to('program-objective')->withInput();
  142. }*/
  143. } else {
  144. // Check Objective uniqueness
  145. if (!$this->isObjectiveUnique($clean_input)) {
  146. /** Send error message and old data */
  147. Session::flash('status', 'danger');
  148. Session::flash('message', "This objective is a duplicate of an already saved Objective because it's and associated program are the same.");
  149. // return Redirect::to('objective')->withInput();
  150. return Redirect::to('objectives')->withInput();
  151. /*$role = Auth::user()['role'];
  152. switch ($role) {
  153. case 1:
  154. return Redirect::to('objective')->withInput();
  155. case 2:
  156. return Redirect::to('school-objective')->withInput();
  157. case 3:
  158. return Redirect::to('program-objective')->withInput();
  159. }*/
  160. }
  161. /** Instantiate new Objective */
  162. $objective = new Objective;
  163. $objective->text = $clean_input['text'];
  164. /** If Objective is saved, send success message */
  165. if ($objective->save()) {
  166. $objectiveId = $objective->id;
  167. foreach ($clean_input['program_id'] as $program_id) {
  168. DB::insert("insert into objective_program (objective_id, program_id) values({$objectiveId},{$program_id})");
  169. }
  170. foreach ($clean_input['outcome_id'] as $outcome_id) {
  171. DB::insert("insert into `objective_outcome` (objective_id, outcome_id) values ({$objectiveId}, {$outcome_id})");
  172. /*if (!($objectiveOutcome->save())) {
  173. Session::flash('status', 'danger');
  174. Session::flash('message', '<p>Error creating objective. Please try again later.</p>');
  175. return Redirect::to('objective')->withInput();
  176. }*/
  177. }
  178. DB::table('criterion_objective_outcome')
  179. ->join('program_criterion', 'criterion_objective_outcome.criterion_id', "=", 'program_criterion.criterion_id')
  180. ->whereIn('program_id', $clean_input['program_id'])
  181. ->whereIn('outcome_id', $clean_input['outcome_id'])
  182. ->where('objective_id', '=', 0)
  183. ->update(array('objective_id' => $objectiveId));
  184. // update("update criterion_objective_outcome coo join program_criterion pc on coo.criterion_id=pc.criterion_id set
  185. // objective_id= {$objectiveId} where program_id in (".$clean_input['program_id'].") and objective_id=0 and outcome_id in (".$clean_input['outcome_id'].")");
  186. Session::flash('status', 'success');
  187. Session::flash('message', 'Objective created: "' . $objective->text . '".');
  188. // return Redirect::to('objective')->withInput(Input::only('outcome_id'));
  189. return Redirect::to('objectives')->withInput(Input::only('outcome_id'));
  190. /*$role = Auth::user()['role'];
  191. switch ($role) {
  192. case 1:
  193. return Redirect::to('objective')->withInput(Input::only('outcome_id'));
  194. case 2:
  195. return Redirect::to('school-objective')->withInput(Input::only('outcome_id'));
  196. case 3:
  197. return Redirect::to('program-objective')->withInput(Input::only('outcome_id'));
  198. }*/
  199. }
  200. /** If saving fails, send error message and old data */
  201. else {
  202. Session::flash('status', 'danger');
  203. Session::flash('message', '<p>Error creating objective. Please try again later.</p>');
  204. return Redirect::to('objectives')->withInput();
  205. // return Redirect::to('objective')->withInput();
  206. /*$role = Auth::user()['role'];
  207. switch ($role) {
  208. case 1:
  209. return Redirect::to('objective')->withInput();
  210. case 2:
  211. return Redirect::to('school-objective')->withInput();
  212. case 3:
  213. return Redirect::to('program-objective')->withInput();
  214. }*/
  215. }
  216. }
  217. }
  218. /**
  219. * Store a newly created resource in storage.
  220. *
  221. * @return Response
  222. */
  223. public function store()
  224. {
  225. //
  226. }
  227. /**
  228. * Display the specified resource.
  229. *
  230. * @param int $id
  231. * @return Response
  232. */
  233. public function show($id)
  234. {
  235. //
  236. }
  237. /**
  238. * Show the form for editing the specified resource.
  239. *
  240. * @param int $id
  241. * @return Response
  242. */
  243. public function edit()
  244. {
  245. $title = "Objective";
  246. $outcomes = Outcome::whereNull("deactivation_date")->orderBy('name', 'ASC')->get();
  247. $role = Auth::user()->role;
  248. switch ($role) {
  249. case 1:
  250. $program_ids = DB::table("programs")
  251. ->lists('id');
  252. break;
  253. case 2:
  254. $program_ids = DB::table('programs')
  255. ->where('school_id', Auth::user()->school_id)
  256. ->lists('id');
  257. break;
  258. case 3:
  259. $program_ids = DB::table('program_user')
  260. ->where('user_id', Auth::user()->id)
  261. ->lists('program_id');
  262. break;
  263. }
  264. $objectives_from_program = DB::table('objective_program')
  265. ->where('program_id', $program_ids)
  266. ->where('objective_program.objective_id', "<>", 0)
  267. ->lists('objective_id');
  268. $objectives = Objective::withTrashed()->whereIn('id', $objectives_from_program)->orderBy('text', 'ASC')->get();
  269. $programs = Program::whereIn('id', $program_ids)->orderBy('name', 'ASC')->get();
  270. return View::make('local.managers.shared.objectives', compact('title', 'outcomes', 'objectives', 'programs'));
  271. }
  272. public function editProgram()
  273. {
  274. $userProgram = Auth::user()['id'];
  275. Log::info(Auth::user());
  276. $userProgram = DB::select("select program_user.program_id from program_user where user_id = {$userProgram}");
  277. $title = "Objective";
  278. $outcomes = Outcome::whereNull("deactivation_date")->orderBy('name', 'ASC')->get();
  279. $objectives_from_program = DB::table('objective_program')
  280. ->where('program_id', $userProgram[0]->program_id)
  281. ->where('objective_program.objective_id', "<>", 0)
  282. ->lists('objective_id');
  283. $objectives = Objective::withTrashed()->orderBy('text', 'ASC')->whereIn('id', $objectives_from_program)->get();
  284. $programs = Program::where("id", '=', $userProgram[0]->program_id)->get();
  285. return View::make('local.managers.pCoords.objectives', compact('title', 'outcomes', 'objectives', 'programs'));
  286. }
  287. public function editSchool()
  288. {
  289. $userSchool = Auth::user()['school_id'];
  290. Log::info($userSchool);
  291. $title = "Objective";
  292. $outcomes = Outcome::whereNull("deactivation_date")->orderBy('name', 'ASC')->get();
  293. $objectives_from_school = DB::table('programs')
  294. ->join('objective_program', 'objective_program.program_id', '=', 'programs.id')
  295. ->where('programs.school_id', $userSchool)
  296. ->where('objective_program.objective_id', "<>", 0)
  297. ->lists('objective_id');
  298. $objectives = Objective::withTrashed()->orderBy('text', 'ASC')->whereIn('id', $objectives_from_school)->get();
  299. $programs = Program::where("school_id", "=", $userSchool)->orderBy('name', 'ASC')->get();
  300. return View::make('local.managers.sCoords.objectives', compact('title', 'outcomes', 'objectives', 'programs'));
  301. }
  302. /**
  303. * Update the specified resource in storage.
  304. *
  305. * @param int $id
  306. * @return Response
  307. */
  308. public function update()
  309. {
  310. $Objective = Objective::withTrashed()->find(Input::get('id'));
  311. $clean_input = $this->cleanAssocInput();
  312. //Log::info(print_r($clean_input, true));
  313. /** Validation rules */
  314. $validator = $this->makeValidator($clean_input);
  315. /** If validation fails */
  316. if ($validator->fails()) {
  317. /** Prepare error message */
  318. $message = 'Error(s) updating the Objective: <ul>';
  319. foreach ($validator->messages()->all('<li>:message</li>') as $validationError) {
  320. $message .= $validationError;
  321. }
  322. $message .= '</ul>';
  323. /** Send error message and old data */
  324. //Session::flash('status', 'danger');
  325. //Session::flash('message', $message);
  326. $MessageArray = array('status' => 'danger', 'message' => $message);
  327. return $MessageArray;
  328. /*$role = Auth::user()['role'];
  329. switch ($role) {
  330. case 1:
  331. return $MessageArray;
  332. return Redirect::to('objective')->withInput();
  333. case 2:
  334. return $MessageArray;
  335. return Redirect::to('school-objective')->withInput();
  336. case 3:
  337. return $MessageArray;
  338. return Redirect::to('program-objective')->withInput();
  339. }*/
  340. } else {
  341. /** Set info */
  342. Log::info($clean_input);
  343. $Objective->text = $clean_input['text'];
  344. // Set status
  345. /** If Objective is updated, send success message */
  346. if ($Objective->save()) {
  347. //TODO
  348. $objectiveId = $Objective->id;
  349. DB::delete("delete from `objective_outcome` where objective_id ={$objectiveId}");
  350. DB::delete("delete from objective_program where objective_id = {$objectiveId}");
  351. foreach ($clean_input['program_id'] as $program_id) {
  352. DB::insert("insert into `objective_program`(objective_id, program_id) values ({$objectiveId},{$program_id})");
  353. }
  354. foreach ($clean_input['outcome_id'] as $outcome_id) {
  355. DB::insert("insert into `objective_outcome` (objective_id, outcome_id) values ({$objectiveId}, {$outcome_id})");
  356. }
  357. //Session::flash('status', 'success');
  358. //Session::flash('message', 'Updated Objective: "' . $Objective->text . '"');
  359. $MessageArray = array('status' => 'success', 'message' => 'Updated Objective: "' . $Objective->text . '"');
  360. return $MessageArray;
  361. /*$role = Auth::user()['role'];
  362. switch ($role) {
  363. case 1:
  364. return $MessageArray;
  365. return Redirect::to('objective')->withInput();
  366. case 2:
  367. return $MessageArray;
  368. return Redirect::to('school-objective')->withInput();
  369. case 3:
  370. return $MessageArray;
  371. return Redirect::to('program-objective')->withInput();
  372. }*/
  373. }
  374. /** If saving fails, send error message and old data */
  375. else {
  376. //Session::flash('status', 'danger');
  377. ////Session::flash('message', 'Error updating the Objective. Please try again later.');
  378. $MessageArray = array('status' => 'danger', 'message' => 'Error updating the Objective. Please try again later.');
  379. return $MessageArray;
  380. $role = Auth::user()['role'];
  381. switch ($role) {
  382. case 1:
  383. return $MessageArray;
  384. // return Redirect::to('objective')->withInput();
  385. return Redirect::to('objectives')->withInput();
  386. case 2:
  387. return $MessageArray;
  388. return Redirect::to('school-objective')->withInput();
  389. case 3:
  390. return $MessageArray;
  391. return Redirect::to('program-objective')->withInput();
  392. }
  393. }
  394. }
  395. }
  396. /**
  397. * Remove the specified resource from storage.
  398. *
  399. * @param int $id
  400. * @return Response
  401. */
  402. public function destroy($id)
  403. {
  404. //
  405. }
  406. }