-
Notifications
You must be signed in to change notification settings - Fork 2
/
Geo.php
172 lines (147 loc) · 4.25 KB
/
Geo.php
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
namespace div\geoip;
use Yii;
use yii\base\Component;
use yii\base\InvalidConfigException;
use yii\db\ActiveRecord;
use yii\web\Cookie;
class Geo extends Component
{
/**
* сохранять ли город к cookie
* @var bool
*/
public $useCookie = true;
/**
* название cookie для сохранения идентификатора города
* @var string
*/
public $cookieName = 'city';
/**
* время жизни cookie (в днях)
* @var int
*/
public $cookieExpire = 1;
/**
* класс модели для работы с городами
* @var string
*/
public $cityClass;
/**
* название атрибута модели, в котором хранится название города
* @var string
*/
public $nameAttribute = 'name';
/**
* @var ActiveRecord
*/
protected $city = false;
/**
* объект для работы с сервисом ipgeobase.ru
* @var IpGeoBase
*/
protected $base;
public function init()
{
if (!$this->cityClass) {
throw new InvalidConfigException('Необходимо указать класс для модели города');
}
$this->base = new IpGeoBase();
}
/**
* определение города и если параметр useCookir установлен в true,
* сохранение идентифкатора города в cookie
* @param string|null $ip
* @return ActiveRecord|null
*/
public function getCity($ip = null)
{
if ($this->city !== false) {
return $this->city;
}
/** @var ActiveRecord $cityClass */
$cityClass = $this->cityClass;
if ($this->useCookie && $cityId = $this->getCookie()) {
if ($cityId == 'null') {
return null;
}
$city = $cityClass::findOne($cityId);
if ($city) {
return $city;
}
}
$data = $this->getData($ip);
if (empty($data['city'])) {
// если не удалось определить город
$this->saveCookie('null');
return null;
}
$city = $cityClass::find()->where([$this->nameAttribute => $data['city']])->one();
if ($city) {
$this->saveCookie($city->primaryKey);
$this->city = $city;
return $city;
} else {
// если города нет в базе
$this->saveCookie('null');
return null;
}
}
/**
* получение данных по текущему ip адресу
* @return array|null
* [
* 'inetnum' => Диапазон адресов
* 'country' => Страна
* 'city' => Город
* 'region' => Регион
* 'district' => Район
* 'lat' => Широта
* 'lng' => Долгота
* ]
*/
public function getData($ip = null)
{
if (is_null($ip)) {
$this->base->ip = $this->base->getIp();
} else {
$this->base->ip = $ip;
}
return $this->base->getData();
}
/**
* сохранение идентификатора города в cookie
* @param $cityId
*/
protected function saveCookie($cityId)
{
if (!$this->useCookie) {
return;
}
$cookie = new Cookie([
'name' => $this->cookieName,
'value' => $cityId,
'expire' => time() + 3600 * 24 * $this->cookieExpire,
]);
Yii::$app->response->cookies->add($cookie);
}
/**
* получение сохранённого идентификатора города из cookie
* @return int|null
*/
protected function getCookie()
{
if (!$this->useCookie) {
return null;
}
if ($cookie = Yii::$app->request->cookies->get($this->cookieName)) {
if ($cookie->value == 'null') {
return 'null';
} else {
return (int)$cookie->value;
}
} else {
return null;
}
}
}