AsusgAddCheckboxToCheckpoint.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. namespace app\models;
  3. use Yii;
  4. use yii\base\Model;
  5. use app\models\entity\CheckpointTypes;
  6. use app\models\entity\CheckpointTypeHierarchy;
  7. /*
  8. add_cb2cp: BEGIN
  9. declare checkbox_id integer;
  10. declare tmp integer;
  11. if checkbox is null then leave add_cb2cp; end if;
  12. // 1 получение ид чекпоинта
  13. select id into checkbox_id
  14. from checkpoint_types
  15. where name = checkbox
  16. and class = 'CheckBox';
  17. // 2 проверка на существование чекпоинта
  18. if checkbox_id is null then
  19. insert into checkpoint_types
  20. (name, class)
  21. values
  22. (checkbox, 'CheckBox');
  23. select id into checkbox_id
  24. from checkpoint_types
  25. where name = checkbox
  26. and class = 'CheckBox';
  27. end if;
  28. // 3 проверка иерархии
  29. select cp_type into tmp
  30. from checkpoint_type_hierarchy
  31. where parent_cp_type = checkpoint_id
  32. and cp_type = checkbox_id;
  33. if tmp is null then
  34. insert into checkpoint_type_hierarchy
  35. (parent_cp_type, cp_type)
  36. values
  37. (checkpoint_id, checkbox_id);
  38. end if;
  39. END
  40. */
  41. class AsusgAddCheckboxToCheckpointModel extends Model
  42. {
  43. private $tmp;
  44. private $cp_type;
  45. private $checkbox;
  46. private $checkbox_id;
  47. private $checkpoint_id;
  48. public function execute($checkpoint_id, $checkbox)
  49. {
  50. $this->checkpoint_id = $checkpoint_id;
  51. $this->checkbox = $checkbox;
  52. if ( null == $this->checkbox ){
  53. return false;
  54. }
  55. // 1 получение ид чекпоинта
  56. if(!$this->GetCheckpoint()) {
  57. return false;
  58. }
  59. // 2 проверка на существование чекпоинта
  60. //if(!$this->CheckIssetCheckpoint()) {
  61. // return false;
  62. //}
  63. // 3 проверка иерархии
  64. if(!$this->CheckHierarchy()) {
  65. return false;
  66. }
  67. return true;
  68. }
  69. private function GetCheckpoint(){
  70. $checkpointTypesEntity = CheckpointTypes::findOne(['name' => $this->checkbox, 'class' => 'CheckBox']);
  71. $this->checkpoint_id = $checkpointTypesEntity->id;
  72. if ( null == $this->checkpoint_id) {
  73. if(!$this->CheckIssetCheckpoint()) {
  74. return false;
  75. }
  76. }
  77. return true;
  78. }
  79. private function CheckIssetCheckpoint(){
  80. $CheckpointTypesEntity = new CheckpointTypes();
  81. $CheckpointTypesEntity->name = $this->checkbox;
  82. $CheckpointTypesEntity->class = 'CheckBox';
  83. $CheckpointTypesEntity->save();
  84. $this->checkpoint_id = $CheckpointTypesEntity->id;
  85. if ( null == $this->checkpoint_id) {
  86. return false;
  87. }
  88. return true;
  89. }
  90. private function CheckHierarchy() {
  91. $checkpointTypeHierarchy = CheckpointTypeHierarchy::find()->where(['parent_cp_type' => $rhis->checkpoint_id, 'cp_type' => $rhis->checkbox_id])->one();
  92. $this->tmp = $checkpointTypeHierarchy->cp_type;
  93. if ( null == $this->tmp) {
  94. $checkpointTypeHierarchy = new CheckpointTypeHierarchy();
  95. $checkpointTypeHierarchy->parent_cp_type = $this->checkpoint_id;
  96. $checkpointTypeHierarchy->cp_type = $this->checkbox_id;
  97. $checkpointTypeHierarchy->save();
  98. }
  99. }
  100. }