|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* Class DBStaticUser |
|
5
|
|
|
*/ |
|
6
|
|
|
class DBStaticUser extends DBStaticRecord { |
|
7
|
|
|
|
|
8
|
|
|
public static $_table = 'users'; |
|
9
|
|
|
public static $_idField = 'id'; |
|
10
|
|
|
|
|
11
|
|
|
protected static function whereNotAlly() { |
|
12
|
|
|
|
|
13
|
|
|
} |
|
14
|
|
|
|
|
15
|
|
|
// TODO - это вообще-то надо хранить в конфигурации |
|
16
|
|
|
/** |
|
17
|
|
|
* @return string |
|
18
|
|
|
*/ |
|
19
|
|
|
public static function getLastRegisteredUserName() { |
|
20
|
|
|
$query = |
|
21
|
|
|
static::buildDBQ() |
|
22
|
|
|
->field('username') |
|
23
|
|
|
->where('`user_as_ally` IS NULL') |
|
|
|
|
|
|
24
|
|
|
->orderBy(array('`id` DESC')); |
|
25
|
|
|
|
|
26
|
|
|
return (string)$query->selectValue(); |
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* @return DbResultIterator |
|
31
|
|
|
*/ |
|
32
|
|
|
public static function db_player_list_export_blitz_info() { |
|
33
|
|
|
return |
|
34
|
|
|
static::buildDBQ() |
|
35
|
|
|
->fields(array('id', 'username', 'total_rank', 'total_points', 'onlinetime',)) |
|
36
|
|
|
->where('`user_as_ally` IS NULL') |
|
|
|
|
|
|
37
|
|
|
->orderBy(array('`id`')) |
|
38
|
|
|
->selectIterator(); |
|
39
|
|
|
} |
|
40
|
|
|
|
|
41
|
|
|
/** |
|
42
|
|
|
* @return DbResultIterator |
|
43
|
|
|
*/ |
|
44
|
|
|
public static function db_user_list_non_bots() { |
|
45
|
|
|
// $query = doquery("SELECT `id` FROM {{users}} WHERE `user_as_ally` IS NULL AND `user_bot` = " . USER_BOT_PLAYER . " FOR UPDATE;"); |
|
46
|
|
|
|
|
47
|
|
|
$query = |
|
48
|
|
|
static::buildDBQ() |
|
49
|
|
|
->field('id') |
|
50
|
|
|
->where("`user_as_ally` IS NULL") |
|
|
|
|
|
|
51
|
|
|
->where("`user_bot` = " . USER_BOT_PLAYER) |
|
|
|
|
|
|
52
|
|
|
->setForUpdate(); |
|
53
|
|
|
|
|
54
|
|
|
return $query->selectIterator(); |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
public static function db_user_lock_with_target_owner_and_acs($user, $planet = array()) { |
|
58
|
|
|
$query = "SELECT 1 FROM `{{users}}` WHERE `id` = " . idval($user['id']) . |
|
59
|
|
|
(!empty($planet['id_owner']) ? ' OR `id` = ' . idval($planet['id_owner']) : '') |
|
60
|
|
|
. " FOR UPDATE"; |
|
61
|
|
|
|
|
62
|
|
|
static::getDb()->doquery($query); |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
|
|
/** |
|
66
|
|
|
* @param bool $online |
|
67
|
|
|
* |
|
68
|
|
|
* @return int |
|
69
|
|
|
*/ |
|
70
|
|
|
public static function db_user_count($online = false) { |
|
71
|
|
|
return intval(static::getDb()->doQueryFetchValue( |
|
72
|
|
|
'SELECT COUNT(`id`) AS `user_count` FROM `{{users}}` WHERE `user_as_ally` IS NULL' . ($online ? ' AND `onlinetime` > ' . (SN_TIME_NOW - classSupernova::$config->game_users_online_timeout) : '') |
|
|
|
|
|
|
73
|
|
|
)); |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
public static function db_user_list_admin_sorted($sort, $online = false) { |
|
77
|
|
|
// $query = "SELECT |
|
|
|
|
|
|
78
|
|
|
// u.*, COUNT(r.id) AS referral_count, SUM(r.dark_matter) AS referral_dm |
|
79
|
|
|
// FROM |
|
80
|
|
|
// {{users}} as u |
|
81
|
|
|
// LEFT JOIN |
|
82
|
|
|
// {{referrals}} as r on r.id_partner = u.id |
|
83
|
|
|
// WHERE " . |
|
84
|
|
|
// ($online ? "`onlinetime` >= :onlineTime" : 'user_as_ally IS NULL') . |
|
85
|
|
|
// " GROUP BY u.id |
|
86
|
|
|
// ORDER BY user_as_ally, {$sort} ASC"; |
|
87
|
|
|
|
|
88
|
|
|
$query = static::buildDBQ() |
|
89
|
|
|
->setAlias('u') |
|
90
|
|
|
->field('u.*') |
|
91
|
|
|
->fieldCount('r.id', 'referral_count') |
|
92
|
|
|
->fieldSingleFunction('sum', 'r.dark_matter', 'referral_dm') |
|
93
|
|
|
->join('LEFT JOIN {{referrals}} as r on r.id_partner = u.id') |
|
94
|
|
|
->where($online ? "`onlinetime` >= " . intval(SN_TIME_NOW - classSupernova::$config->game_users_online_timeout) : 'user_as_ally IS NULL') |
|
|
|
|
|
|
95
|
|
|
->groupBy('u.id') |
|
|
|
|
|
|
96
|
|
|
->orderBy("user_as_ally, {$sort} ASC"); |
|
97
|
|
|
|
|
98
|
|
|
$result = $query->selectIterator(); |
|
99
|
|
|
|
|
100
|
|
|
return $result; |
|
101
|
|
|
} |
|
102
|
|
|
|
|
103
|
|
|
public static function db_user_list_to_celebrate($config_user_birthday_range) { |
|
104
|
|
|
$query = static::buildDBQ() |
|
105
|
|
|
->field('id', 'username', 'user_birthday', 'user_birthday_celebrated') |
|
106
|
|
|
->fieldLiteral('CONCAT(YEAR(CURRENT_DATE), DATE_FORMAT(`user_birthday`, \'-%m-%d\')) AS `current_birthday`') |
|
107
|
|
|
->fieldLiteral('DATEDIFF(CURRENT_DATE, CONCAT(YEAR(CURRENT_DATE), DATE_FORMAT(`user_birthday`, \'-%m-%d\'))) AS `days_after_birthday`') |
|
108
|
|
|
->where('`user_birthday` IS NOT NULL') |
|
|
|
|
|
|
109
|
|
|
->where('(`user_birthday_celebrated` IS NULL OR DATE_ADD(`user_birthday_celebrated`, INTERVAL 1 YEAR) < CURRENT_DATE)') |
|
|
|
|
|
|
110
|
|
|
->where('`user_as_ally` IS NULL') |
|
|
|
|
|
|
111
|
|
|
->having('`days_after_birthday` >= 0') |
|
112
|
|
|
->having('`days_after_birthday` < ' . intval($config_user_birthday_range)) |
|
113
|
|
|
->setForUpdate(); |
|
114
|
|
|
|
|
115
|
|
|
$result = $query->selectIterator(); |
|
116
|
|
|
// |
|
|
|
|
|
|
117
|
|
|
// $query = "SELECT |
|
118
|
|
|
// `id`, `username`, `user_birthday`, `user_birthday_celebrated`, |
|
119
|
|
|
// CONCAT(YEAR(CURRENT_DATE), DATE_FORMAT(`user_birthday`, '-%m-%d')) AS `current_birthday`, |
|
120
|
|
|
// DATEDIFF(CURRENT_DATE, CONCAT(YEAR(CURRENT_DATE), DATE_FORMAT(`user_birthday`, '-%m-%d'))) AS `days_after_birthday` |
|
121
|
|
|
// FROM |
|
122
|
|
|
// `{{users}}` |
|
123
|
|
|
// WHERE |
|
124
|
|
|
// `user_birthday` IS NOT NULL |
|
125
|
|
|
// AND `user_as_ally` IS NULL |
|
126
|
|
|
// AND (`user_birthday_celebrated` IS NULL OR DATE_ADD(`user_birthday_celebrated`, INTERVAL 1 YEAR) < CURRENT_DATE) |
|
127
|
|
|
// HAVING |
|
128
|
|
|
// `days_after_birthday` >= 0 AND `days_after_birthday` < {$config_user_birthday_range} FOR UPDATE"; |
|
129
|
|
|
// |
|
130
|
|
|
// $result = static::$dbStatic->doQueryIterator($query); |
|
131
|
|
|
|
|
132
|
|
|
return $result; |
|
133
|
|
|
} |
|
134
|
|
|
|
|
135
|
|
|
/** |
|
136
|
|
|
* @return DbEmptyIterator|DbMysqliResultIterator |
|
137
|
|
|
*/ |
|
138
|
|
|
public static function db_user_list_admin_multiaccounts() { |
|
139
|
|
|
$query = "SELECT COUNT(*) AS `ip_count`, `user_lastip` |
|
140
|
|
|
FROM `{{users}}` |
|
141
|
|
|
WHERE `user_as_ally` IS NULL |
|
142
|
|
|
GROUP BY `user_lastip` |
|
143
|
|
|
HAVING COUNT(*) > 1"; |
|
144
|
|
|
|
|
145
|
|
|
return static::getDb()->doQueryIterator($query); |
|
146
|
|
|
} |
|
147
|
|
|
|
|
148
|
|
|
public static function db_player_list_blitz_delete_players() { |
|
149
|
|
|
doquery("DELETE FROM `{{users}}` WHERE `username` LIKE 'Игрок%';"); |
|
150
|
|
|
} |
|
151
|
|
|
|
|
152
|
|
|
public static function db_player_list_blitz_set_50k_dm() { |
|
153
|
|
|
doquery('UPDATE `{{users}}` SET `dark_matter` = 50000, `dark_matter_total` = 50000;'); |
|
154
|
|
|
} |
|
155
|
|
|
|
|
156
|
|
|
|
|
157
|
|
|
/** |
|
158
|
|
|
* Выбирает записи игроков по списку их ID |
|
159
|
|
|
* |
|
160
|
|
|
* @param $user_id_list |
|
161
|
|
|
* |
|
162
|
|
|
* @return array |
|
163
|
|
|
*/ |
|
164
|
|
|
public static function db_user_list_by_id($user_id_list) { |
|
165
|
|
|
!is_array($user_id_list) ? $user_id_list = array($user_id_list) : false; |
|
166
|
|
|
|
|
167
|
|
|
$user_list = array(); |
|
168
|
|
|
foreach ($user_id_list as $user_id_unsafe) { |
|
169
|
|
|
$user = DBStaticUser::db_user_by_id($user_id_unsafe); |
|
170
|
|
|
!empty($user) ? $user_list[$user_id_unsafe] = $user : false; |
|
171
|
|
|
} |
|
172
|
|
|
|
|
173
|
|
|
return $user_list; |
|
174
|
|
|
} |
|
175
|
|
|
|
|
176
|
|
|
|
|
177
|
|
|
public static function db_user_by_username($username_unsafe, $for_update = false, $fields = '*', $player = null, $like = false) { |
|
178
|
|
|
return classSupernova::db_get_user_by_username($username_unsafe, $for_update, $fields, $player, $like); |
|
179
|
|
|
} |
|
180
|
|
|
|
|
181
|
|
|
public static function db_user_list($user_filter = '', $for_update = false, $fields = '*') { |
|
|
|
|
|
|
182
|
|
|
return classSupernova::db_get_record_list(LOC_USER, $user_filter); |
|
183
|
|
|
} |
|
184
|
|
|
|
|
185
|
|
|
public static function db_user_set_by_id($user_id, $set) { |
|
186
|
|
|
return classSupernova::db_upd_record_by_id(LOC_USER, $user_id, $set); |
|
187
|
|
|
} |
|
188
|
|
|
|
|
189
|
|
|
public static function db_user_by_id($user_id_unsafe, $for_update = false, $fields = '*', $player = null) { |
|
190
|
|
|
return classSupernova::db_get_user_by_id($user_id_unsafe, $for_update, $fields, $player); |
|
191
|
|
|
} |
|
192
|
|
|
|
|
193
|
|
|
public static function db_user_list_set_mass_mail(&$owners_list, $set) { |
|
194
|
|
|
return classSupernova::db_upd_record_list(LOC_USER, !empty($owners_list) ? '`id` IN (' . implode(',', $owners_list) . ');' : '', $set); |
|
195
|
|
|
} |
|
196
|
|
|
|
|
197
|
|
|
public static function db_user_list_set_by_ally_and_rank($ally_id, $ally_rank_id, $set) { |
|
198
|
|
|
return classSupernova::db_upd_record_list(LOC_USER, "`ally_id`={$ally_id} AND `ally_rank_id` >= {$ally_rank_id}", $set); |
|
199
|
|
|
} |
|
200
|
|
|
|
|
201
|
|
|
public static function db_user_list_set_ally_deprecated_convert_ranks($ally_id, $i, $rank_id) { |
|
202
|
|
|
return classSupernova::db_upd_record_list(LOC_USER, "`ally_id` = {$ally_id} AND `ally_rank_id`={$rank_id}", "`ally_rank_id` = {$i}"); |
|
203
|
|
|
} |
|
204
|
|
|
|
|
205
|
|
|
/** |
|
206
|
|
|
* @param array $playerArray |
|
207
|
|
|
*/ |
|
208
|
|
|
public static function renderNameAndCoordinates($playerArray) { |
|
209
|
|
|
return "{$playerArray['username']} " . uni_render_coordinates($playerArray); |
|
210
|
|
|
} |
|
211
|
|
|
|
|
212
|
|
|
// // TODO - IoC test |
|
|
|
|
|
|
213
|
|
|
// public static function test() { |
|
214
|
|
|
// $that = new static(); |
|
215
|
|
|
// |
|
216
|
|
|
// return DBStaticUser::getMax($that); |
|
217
|
|
|
// } |
|
218
|
|
|
} |
|
219
|
|
|
|
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: