AsusgAddCheckpointsToTaskModel.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <?php
  2. namespace app\models\procedure;
  3. use Yii;
  4. use yii\base\Model;
  5. use yii\db\Expression;
  6. use app\models\entity\Tasks;
  7. use app\models\entity\Checkpoints;
  8. use app\models\entity\CheckpointTypes;
  9. use app\models\entity\CheckpointTypesForTasks;
  10. use app\models\entity\CheckpointTypeHierarchy;
  11. class AsusgAddCheckpointsToTaskModel extends Model
  12. {
  13. private $cb;
  14. private $cpt;
  15. private $cpid;
  16. private $uuid;
  17. private $task_id;
  18. private $txt = '';
  19. private $initiator;
  20. private $txtParent;
  21. private $tasktypeId;
  22. private $tmpUuid = '';
  23. private static $_instance = null;
  24. public static function execute($initiator, $taskCreated) {
  25. self::$_instance = new self();
  26. self::$_instance->task_id = $taskCreated;
  27. self::$_instance->initiator = $initiator;
  28. self::$_instance->getTasktypeId();
  29. self::$_instance->createCheckpoints();
  30. return true;
  31. }
  32. private function cpt_get($tasktypeId)
  33. {
  34. $checkpointTypesForTasksEntity = CheckpointTypesForTasks::find()->select('cp_type_id')->where(['tasktype_id' => $tasktypeId])->orderBy(['coalesce(priority, 0)' => SORT_ASC, 'cp_type_id' => SORT_ASC])->all();
  35. return $checkpointTypesForTasksEntity;
  36. }
  37. private function cb_get($cpt)
  38. {
  39. $checkpointTypeHierarchyEntity = CheckpointTypeHierarchy::find()->select('cp_type')->where(['parent_cp_type' => $cpt])->orderBy(['cp_type' => SORT_ASC])->all();
  40. return $checkpointTypeHierarchyEntity;
  41. }
  42. // 1
  43. private function getTasktypeId()
  44. {
  45. $tasksEntity = Tasks::find()->select('type')->where(['id' => self::$_instance->task_id])->one();
  46. self::$_instance->tasktypeId = $tasksEntity->type;
  47. }
  48. // 2
  49. private function createCheckpoints() {
  50. $tasktype = self::$_instance->tasktypeId;
  51. foreach(self::$_instance->cpt_get($tasktype) as $tasktypeId) {
  52. self::$_instance->txt = CheckpointTypes::findOne($tasktypeId->cp_type_id);
  53. self::$_instance->generateUuid(); // 2.1
  54. self::$_instance->addCheckpoints(); // 2.2
  55. self::$_instance->cpid = Checkpoints::find()->where(['text' => self::$_instance->tmpUuid])->one();
  56. $checkpointsEntity = Checkpoints::findOne(self::$_instance->cpid->id);
  57. $checkpointsEntity->text = self::$_instance->txt->name;
  58. $checkpointsEntity->save();
  59. foreach( self::$_instance->cb_get($tasktypeId->cp_type_id) as $parent ) {
  60. self::$_instance->getCheckpointTypesName($parent->cp_type); // 2.3
  61. self::$_instance->insertCheckpointTypes($parent->cp_type); // 2.4
  62. }
  63. }
  64. }
  65. // 2.1
  66. private function generateUuid()
  67. {
  68. $query = 'select UUID()';
  69. $uuid = Yii::$app->db->createCommand('select UUID() as uuid')->queryOne();
  70. self::$_instance->tmpUuid = $uuid["uuid"];
  71. if ( null == self::$_instance->tmpUuid ){
  72. return false;
  73. }
  74. return true;
  75. }
  76. // 2.2
  77. private function addCheckpoints()
  78. {
  79. $checkpointsEntity = new Checkpoints();
  80. $checkpointsEntity->type = $tasktypeId->cp_type_id;
  81. $checkpointsEntity->text = self::$_instance->tmpUuid;
  82. $checkpointsEntity->parent_task_id = self::$_instance->task_id;
  83. $checkpointsEntity->parent_checkpoint_id = 0;
  84. $checkpointsEntity->save();
  85. if ( !$checkpointsEntity->save()){
  86. return false;
  87. }
  88. return true;
  89. }
  90. //2.3
  91. private function getCheckpointTypesName($cb)
  92. {
  93. $checkpointTypesEntity = CheckpointTypes::find()->select('name')->where(['id' => $cb])->one();
  94. self::$_instance->txtParent = $checkpointTypesEntity->name;
  95. if ( null == self::$_instance->txtParent ){
  96. return false;
  97. }
  98. return true;
  99. }
  100. // 2.4
  101. private function insertCheckpointTypes($cb)
  102. {
  103. $checkpointsEntity = new Checkpoints();
  104. $checkpointsEntity->type = $cb;
  105. $checkpointsEntity->text = self::$_instance->txtParent;
  106. $checkpointsEntity->parent_task_id = self::$_instance->task_id;
  107. $checkpointsEntity->parent_checkpoint_id = self::$_instance->cpid->id;
  108. $checkpointsEntity->save();
  109. if ( null == self::$_instance->tmpUuid ){
  110. return false;
  111. }
  112. return true;
  113. }
  114. }
  115. /*
  116. 197366
  117. cpt_add: BEGIN
  118. declare tasktypeId integer;
  119. declare cpt integer;
  120. declare txt varchar(255);
  121. declare tmpUuid varchar(255);
  122. declare cb integer;
  123. declare cpid integer;
  124. declare done integer;
  125. declare cpt_get cursor for
  126. select cp_type_id
  127. from checkpoint_types_for_tasks
  128. where tasktype_id = tasktypeId
  129. order by coalesce(priority, 0), cp_type_id;
  130. declare cb_get cursor for
  131. select cp_type
  132. from checkpoint_type_hierarchy
  133. where parent_cp_type = cpt
  134. order by cp_type;
  135. declare continue handler for not found set done = 1;
  136. 1
  137. select type into tasktypeId
  138. from tasks
  139. where id = task_id;
  140. 2
  141. open cpt_get;
  142. cptget: loop
  143. set done = 0;
  144. fetch cpt_get into cpt;
  145. if done = 1 then leave cptget; end if;
  146. select name into txt
  147. from checkpoint_types
  148. where id = cpt;
  149. set tmpUuid = uuid();
  150. insert into checkpoints
  151. (type, text, parent_task_id, parent_checkpoint_id)
  152. values
  153. (cpt, tmpUuid, task_id, 0);
  154. select id into cpid
  155. from checkpoints
  156. where text = tmpUuid;
  157. update checkpoints
  158. set text = txt
  159. where id = cpid;
  160. open cb_get;
  161. cbget: loop
  162. set done = 0;
  163. fetch cb_get into cb;
  164. if done = 1 then leave cbget; end if;
  165. select name into txt
  166. from checkpoint_types
  167. where id = cb;
  168. insert into checkpoints
  169. (type, text, parent_task_id, parent_checkpoint_id)
  170. values
  171. (cb, txt, task_id, cpid);
  172. end loop;
  173. close cb_get;
  174. end loop;
  175. close cpt_get;
  176. END
  177. */