$value) { if(property_exists(get_called_class(), $field)) { $model->$field = $value; } } $me = new User(); $me->loadMe(); if($model->create_by === null) { $model->create_by = $me->id; } if($model->edit_by === null) { $model->edit_by = $me->id; } if(!array_key_exists("note", $data)) { $model->note = ""; } return $model; } public static function getOne($id) { if(!is_numeric($id) || !$id) { throw new Exception("Invalid number", 400); } $item = []; $db = FronkDB::singleton(); $res = $db->select("Address", "*", "id=$id LIMIT 1"); if($db->num_rows($res)) { $data = $db->fetch_object($res); $item = new Address($data); } return $item; } public static function getAll() { $items = []; $db = FronkDB::singleton(); $res = $db->select("Address", "*"); if($db->num_rows($res)) { while($data = $db->fetch_object($res)) { $items[] = new Address($data); } } return $items; } public static function byNetwork($network_id, $addresstype) { if(!is_numeric($network_id) || !$network_id) { return false; } $db = FronkDB::singleton(); $addresses = []; // get all addresses of network $sql = "SELECT Address.id as id FROM `Address` LEFT JOIN NetworkAddress ON (NetworkAddress.address_id = Address.id) WHERE NetworkAddress.type = '$addresstype' AND network_id = $network_id GROUP BY id"; $res = $db->query($sql); if($db->num_rows($res)) { while($data = $db->fetch_object($res)) { $addresses[] = new Address($data->id); } } return $addresses; } public static function search($filter) { $items = []; $db = FronkDB::singleton(); $where = self::getSqlFilter($filter); $have = []; $sql = "SELECT Address.* FROM Address, Addresstype WHERE Addresstype.address_id = Address.id AND $where GROUP BY Addresstype.address_id ORDER BY Address.id"; $res = $db->query($sql); if($db->num_rows($res)) { while($data = $db->fetch_object($res)) { $items[] = new Address($data); $have[] = $data->id; } } if(!array_key_exists("addresstype", $filter)) { if($have) { $res = $db->select("Address", "*", "$where AND id NOT IN (".implode(",", $have).")"); } else { $res = $db->select("Address", "*", "$where AND id"); } if($db->num_rows()) { while($data = $db->fetch_object($res)) { $items[] = new Address($data); } } } return $items; } private function getSqlFilter($filter) { $where = "1=1 "; /* * Address Type */ if(is_array($filter['addresstype']) && count($filter['addresstype'])) { $at = $filter['addresstype']; $in = []; foreach(TT_ROLES as $role) { if(in_array($role, $at)) { $in[] = "Addresstype.type = '$role'"; } } $or = ""; if(count($in)) { $or = implode(" OR ", $in); $where .= " AND ( $or )"; } } //var_dump($filter);exit; if(array_key_exists("parent_id", $filter)) { $parentid = $filter['parent_id']; if($parentid === null || $parent_id == "null") { $where .= " AND parent_id IS NULL"; } elseif(is_numeric($parentid)) { $where .= " AND parent_id=$parentid"; } } if(array_key_exists("create_by", $filter)) { $create_by = $filter['create_by']; if(is_numeric($create_by)) { $where .= " AND Address.create_by=$create_by"; } elseif(is_array($create_by) && count($create_by)) { $where .= " AND Address.create_by IN (". implode(",",$create_by).")"; } } if(array_key_exists("parents_only", $filter)) { $po = $filter['parents_only']; if($po == 1) { $where .= " AND parent_id IS NULL"; } } //var_dump($filter, $where);exit; return $where; } }