Blame view

src/lib/models/parserItems.php 1.76 KB
ef60cd4d   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  <?php
  class parserItems extends \Phalcon\Mvc\Model
  {
  
      public $item_users_id;
      public $item_name;
      public $price;
      public $section_id;
      public $status;
      public $url;
  
      public function getSource()
      {
          return "parser_items";
      }
      public function initialize()
      {
          $this->hasOne("section_id", "parserSections", "id");
          $this->hasMany("id", "parserCompetitorsItems", "item_id");
      }
  
      static  function checkSection($project_id,$sec_id, $row_id){
          return self::findFirst("url = '".$row_id."' AND section_id =".$sec_id." AND project_id =".$project_id);
      }
  
      static function checkCopy($project_id, $item_name, $item_id, $price)
      {
  
          $conditions = "item_name = :item_name: AND project_id = :project_id:";
  
          $parameters = array(
              "item_name" => mb_strtolower($item_name, "UTF-8"),
              "project_id" => $project_id
          );
  
          $rows = self::find([
              $conditions,
              "bind" => $parameters
          ]);
  
  
  
          foreach($rows as $row ) {
  
              if($row->price == $price) {
                  if($item_id == $row->item_users_id){
                      return true;
                  }
                  foreach($row->parserCompetitorsItems as $item){
                      //$item->delete();
                  }
                  $row->delete();
                  return false;
              } else {
                  return false;
              }
          }
          return true;
      }
  
      public function updateStatus($project_id, $modelsManager){
  
          $sql = "UPDATE parserItems SET status = 0 WHERE project_id = ". $project_id;
          return $modelsManager->executeQuery($sql);
      }
      public function DeleteNonActive($modelsManager){
          self::find("status = 0")->delete();
      }
  }