|
@@ -54,332 +54,332 @@ class ElementRepository extends EntityRepository
|
54
|
54
|
|
55
|
55
|
|
56
|
56
|
|
57
|
|
-
|
58
|
|
- * TODO: Faire un bel objet pour gérer tout ça =)
|
59
|
|
- * => Utiliser l'objet ElementSearcher (ou du moin réorganiser ça en plusieurs
|
60
|
|
- * objets)
|
61
|
|
- *
|
62
|
|
- *
|
63
|
|
- * @param ElementSearcher $searcher
|
64
|
|
- * @return Doctrine\ORM\Query
|
65
|
|
- */
|
66
|
|
- public function findBySearchOLD(ElementSearcher $searcher, $user_id, $exec_type = 'execute', $params = array())
|
67
|
|
- {
|
68
|
|
-
|
69
|
|
- $params_ids = array();
|
70
|
|
- $params_select = array();
|
71
|
|
- $params_select['uid'] = $user_id;
|
72
|
|
- $order_by = "ORDER BY e_.created DESC, e_.id DESC";
|
73
|
|
-
|
74
|
|
-
|
75
|
|
-
|
76
|
|
- if ($searcher->hasIds())
|
77
|
|
- {
|
78
|
|
-
|
79
|
|
-
|
80
|
|
- if ($searcher->isSearchingNew())
|
81
|
|
- {
|
82
|
|
- return $query = $this->getEntityManager()
|
83
|
|
- ->createQuery("SELECT e FROM MuzichCoreBundle:Element e WHERE 1 = 2")
|
84
|
|
- ;
|
85
|
|
- }
|
86
|
|
-
|
87
|
|
- if (($id_limit = $searcher->getIdLimit()))
|
88
|
|
- {
|
89
|
|
- return $this->getSelectElementForSearchQuery($params_select, $user_id, $searcher->getIds(), $id_limit, $searcher->getCount(), $searcher->getIdsDisplay());
|
90
|
|
- }
|
91
|
|
- return $this->getSelectElementForSearchQuery($params_select, $user_id, $searcher->getIds(), null, null, $searcher->getIdsDisplay());
|
92
|
|
- }
|
93
|
|
-
|
94
|
|
-
|
95
|
|
- $is_where = false;
|
96
|
|
-
|
97
|
|
-
|
98
|
|
-
|
99
|
|
-
|
100
|
|
- $where_string = '';
|
101
|
|
- if (($string = $searcher->getString()))
|
102
|
|
- {
|
103
|
|
-
|
104
|
|
- $words = array_unique(array_merge(
|
105
|
|
- explode(' ', $string),
|
106
|
|
- explode('-', $string),
|
107
|
|
- explode('- ', $string),
|
108
|
|
- explode(' -', $string),
|
109
|
|
- explode(' - ', $string),
|
110
|
|
- explode(',', $string),
|
111
|
|
- explode(', ', $string),
|
112
|
|
- explode(' ,', $string),
|
113
|
|
- explode(' , ', $string)
|
114
|
|
- ));
|
115
|
|
-
|
116
|
|
-
|
117
|
|
- $word_min_length = 0;
|
118
|
|
- if (isset($params['word_min_length']))
|
119
|
|
- {
|
120
|
|
- $word_min_length = $params['word_min_length'];
|
121
|
|
- }
|
122
|
|
- foreach ($words as $i => $word)
|
123
|
|
- {
|
124
|
|
- if (strlen($word) >= $word_min_length)
|
125
|
|
- {
|
126
|
|
- if ($where_string === '')
|
127
|
|
- {
|
128
|
|
- $where_string = ($is_where) ? ' AND (' : ' WHERE (';
|
129
|
|
- $is_where = true;
|
130
|
|
- $where_string .= "UPPER(e_.name) LIKE :str".$i;
|
131
|
|
- }
|
132
|
|
- else
|
133
|
|
- {
|
134
|
|
- $where_string .= " OR UPPER(e_.name) LIKE :str".$i;
|
135
|
|
- }
|
136
|
|
- $params_ids['str'.$i] = '%'.strtoupper($word).'%';
|
137
|
|
- }
|
138
|
|
- }
|
139
|
|
- $where_string .= ')';
|
140
|
|
-
|
141
|
|
- }
|
142
|
|
-
|
143
|
|
-
|
144
|
|
-
|
145
|
|
- $where_tags = '';
|
146
|
|
- $join_tags = '';
|
147
|
|
-
|
148
|
|
-
|
149
|
|
- * des fois on se retrouve avec un string au lieu d'un tableau
|
150
|
|
- */
|
151
|
|
- $tags = $searcher->getTags();
|
152
|
|
-
|
153
|
|
- if (!is_array($tags))
|
154
|
|
- {
|
155
|
|
- $tags_decoded = json_decode($tags);
|
156
|
|
- $tags = array();
|
157
|
|
- foreach ($tags_decoded as $tag_id)
|
158
|
|
- {
|
159
|
|
- $tags[$tag_id] = $tag_id;
|
160
|
|
- }
|
161
|
|
- }
|
162
|
|
-
|
163
|
|
- if (count($tags))
|
164
|
|
- {
|
165
|
|
- foreach ($tags as $tag_id => $tag_name)
|
166
|
|
- {
|
167
|
|
-
|
168
|
|
- $join_tags = " LEFT JOIN e_.tags t_";
|
169
|
|
-
|
170
|
|
-
|
171
|
|
- if ($where_tags == '')
|
172
|
|
- {
|
173
|
|
- $where_tags .= ' WHERE (t_.id = :tid'.$tag_id;
|
174
|
|
- }
|
175
|
|
- else
|
176
|
|
- {
|
177
|
|
- $where_tags .= ' OR t_.id = :tid'.$tag_id;
|
178
|
|
- }
|
179
|
|
- $params_ids['tid'.$tag_id] = $tag_id;
|
180
|
|
- }
|
181
|
|
-
|
182
|
|
- $where_tags .= ')';
|
183
|
|
- $is_where = true;
|
184
|
|
- }
|
185
|
|
-
|
186
|
|
-
|
187
|
|
- $join_network = '';
|
188
|
|
- $where_network = '';
|
189
|
|
- if ($searcher->getNetwork() == ElementSearcher::NETWORK_PERSONAL)
|
190
|
|
- {
|
191
|
|
- $join_network =
|
192
|
|
- " JOIN e_.owner o_"
|
193
|
|
-
|
194
|
|
- . " LEFT JOIN e_.group g_"
|
195
|
|
-
|
196
|
|
- . " LEFT JOIN o_.followers_users f_"
|
197
|
|
-
|
198
|
|
- . " LEFT JOIN g_.followers gf_"
|
199
|
|
- ;
|
200
|
|
- $where_network = ($is_where) ? ' AND' : ' WHERE';
|
201
|
|
- $is_where = true;
|
202
|
|
-
|
203
|
|
-
|
204
|
|
- $where_network .= ' (f_.follower = :userid OR gf_.follower = :useridg)';
|
205
|
|
- $params_ids['userid'] = $user_id;
|
206
|
|
- $params_ids['useridg'] = $user_id;
|
207
|
|
- }
|
208
|
|
-
|
209
|
|
-
|
210
|
|
- $where_user = '';
|
211
|
|
-
|
212
|
|
-
|
213
|
|
- if (($search_user_id = $searcher->getUserId()) && !$searcher->isFavorite())
|
214
|
|
- {
|
215
|
|
- $where_user = ($is_where) ? ' AND' : ' WHERE';
|
216
|
|
- $is_where = true;
|
217
|
|
- $where_user .= ' e_.owner = :suid';
|
218
|
|
- $params_ids['suid'] = $search_user_id;
|
219
|
|
- }
|
220
|
|
-
|
221
|
|
-
|
222
|
|
- $where_group = '';
|
223
|
|
-
|
224
|
|
-
|
225
|
|
- if (($search_group_id = $searcher->getGroupId()) && !$searcher->isFavorite())
|
226
|
|
- {
|
227
|
|
- $where_group = ($is_where) ? ' AND' : ' WHERE';
|
228
|
|
- $is_where = true;
|
229
|
|
- $where_group .= ' e_.group = :sgid';
|
230
|
|
- $params_ids['sgid'] = $search_group_id;
|
231
|
|
- }
|
232
|
|
-
|
233
|
|
-
|
234
|
|
- $join_favorite = '';
|
235
|
|
- $where_favorite = '';
|
236
|
|
- if ($searcher->isFavorite())
|
237
|
|
- {
|
238
|
|
- $where_favorite = ($is_where) ? ' AND' : ' WHERE';
|
239
|
|
- $is_where = true;
|
240
|
|
- if (($favorite_user_id = $searcher->getUserId()) && !$searcher->getGroupId())
|
241
|
|
- {
|
242
|
|
-
|
243
|
|
- $join_favorite = 'JOIN e_.elements_favorites fav2_';
|
244
|
|
- $where_favorite .= ' fav2_.user = :fuid';
|
245
|
|
- $params_ids['fuid'] = $favorite_user_id;
|
246
|
|
- }
|
247
|
|
- else if (($favorite_group_id = $searcher->getGroupId()) && !$searcher->getUserId())
|
248
|
|
- {
|
249
|
|
-
|
250
|
|
-
|
251
|
|
- }
|
252
|
|
- else
|
253
|
|
- {
|
254
|
|
- throw new Exception('For use favorite search element, you must specify an user_id or group_id');
|
255
|
|
- }
|
256
|
|
- }
|
257
|
|
-
|
258
|
|
-
|
259
|
|
- $where_id_limit = '';
|
260
|
|
- if (($id_limit = $searcher->getIdLimit()) && !$searcher->isSearchingNew())
|
261
|
|
- {
|
262
|
|
- $where_id_limit = ($is_where) ? ' AND' : ' WHERE';
|
263
|
|
- $is_where = true;
|
264
|
|
- $where_id_limit .= " e_.id < :id_limit";
|
265
|
|
- $params_ids['id_limit'] = $id_limit;
|
266
|
|
- }
|
267
|
|
- elseif ($id_limit && $searcher->isSearchingNew())
|
268
|
|
- {
|
269
|
|
- $where_id_limit = ($is_where) ? ' AND' : ' WHERE';
|
270
|
|
- $is_where = true;
|
271
|
|
- $where_id_limit .= " e_.id > :id_limit";
|
272
|
|
- $params_ids['id_limit'] = $id_limit;
|
273
|
|
-
|
274
|
|
-
|
275
|
|
- $order_by = "ORDER BY e_.created ASC, e_.id ASC";
|
276
|
|
- }
|
277
|
|
-
|
278
|
|
-
|
279
|
|
-
|
280
|
|
- $where_tag_strict = '';
|
281
|
|
- if ($searcher->getTagStrict() && count($tags))
|
282
|
|
- {
|
283
|
|
-
|
284
|
|
-
|
285
|
|
- $tag_ids = '';
|
286
|
|
- foreach ($tags as $tag_id => $tag_name)
|
287
|
|
- {
|
288
|
|
- if ($tag_ids === '')
|
289
|
|
- {
|
290
|
|
- $tag_ids .= (int)$tag_id;
|
291
|
|
- }
|
292
|
|
- else
|
293
|
|
- {
|
294
|
|
- $tag_ids .= ','.(int)$tag_id;
|
295
|
|
- }
|
296
|
|
- }
|
297
|
|
-
|
298
|
|
- $sql = "SELECT et.element_id FROM elements_tag et "
|
299
|
|
- ."WHERE et.tag_id IN ($tag_ids) group by et.element_id "
|
300
|
|
- ."having count(distinct et.tag_id) = ".count($tags);
|
301
|
|
- $rsm = new \Doctrine\ORM\Query\ResultSetMapping;
|
302
|
|
- $rsm->addScalarResult('element_id', 'element_id');
|
303
|
|
-
|
304
|
|
- $strict_element_ids_result = $this->getEntityManager()
|
305
|
|
- ->createNativeQuery($sql, $rsm)
|
306
|
|
-
|
307
|
|
- ->getScalarResult()
|
308
|
|
- ;
|
309
|
|
-
|
310
|
|
- $strict_element_ids = array();
|
311
|
|
- foreach ($strict_element_ids_result as $strict_id)
|
312
|
|
- {
|
313
|
|
- $strict_element_ids[] = $strict_id['element_id'];
|
314
|
|
- }
|
315
|
|
-
|
316
|
|
- if (count($strict_element_ids))
|
317
|
|
- {
|
318
|
|
- $where_tag_strict = ($is_where) ? ' AND' : ' WHERE';
|
319
|
|
- $where_tag_strict .= ' e_.id IN (:tag_strict_ids)';
|
320
|
|
- $params_ids['tag_strict_ids'] = $strict_element_ids;
|
321
|
|
- }
|
322
|
|
-
|
323
|
|
- else
|
324
|
|
- {
|
325
|
|
- $where_tag_strict = ($is_where) ? ' AND' : ' WHERE';
|
326
|
|
- $where_tag_strict .= ' 1 = 2';
|
327
|
|
- }
|
328
|
|
- }
|
329
|
|
-
|
330
|
|
-
|
331
|
|
- $id_query = $this->getEntityManager()
|
332
|
|
- ->createQuery(
|
333
|
|
- "SELECT e_.id
|
334
|
|
- FROM MuzichCoreBundle:Element e_
|
335
|
|
- $join_tags
|
336
|
|
- $join_network
|
337
|
|
- $join_favorite
|
338
|
|
- $where_tags
|
339
|
|
- $where_network
|
340
|
|
- $where_user
|
341
|
|
- $where_group
|
342
|
|
- $where_favorite
|
343
|
|
- $where_tag_strict
|
344
|
|
- $where_string
|
345
|
|
- $where_id_limit
|
346
|
|
- GROUP BY e_.id
|
347
|
|
- $order_by")
|
348
|
|
- ->setParameters($params_ids)
|
349
|
|
- ;
|
350
|
|
-
|
351
|
|
-
|
352
|
|
- if ($exec_type != 'count')
|
353
|
|
- {
|
354
|
|
- $id_query->setMaxResults($searcher->getCount());
|
355
|
|
- }
|
356
|
|
-
|
357
|
|
-
|
358
|
|
- if ($exec_type == 'count')
|
359
|
|
- {
|
360
|
|
-
|
361
|
|
- return $id_query;
|
362
|
|
- }
|
363
|
|
-
|
364
|
|
- $r_ids = $id_query->getArrayResult();
|
365
|
|
-
|
366
|
|
- $ids = array();
|
367
|
|
-
|
368
|
|
- if (count($r_ids))
|
369
|
|
- {
|
370
|
|
- foreach ($r_ids as $r_id)
|
371
|
|
- {
|
372
|
|
- $ids[] = $r_id['id'];
|
373
|
|
- }
|
374
|
|
-
|
375
|
|
- return $this->getSelectElementForSearchQuery($params_select, $user_id, $ids);
|
376
|
|
- }
|
377
|
|
-
|
378
|
|
-
|
379
|
|
- return $query = $this->getEntityManager()
|
380
|
|
- ->createQuery("SELECT e FROM MuzichCoreBundle:Element e WHERE 1 = 2")
|
381
|
|
- ;
|
382
|
|
- }
|
|
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
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
|
383
|
383
|
|
384
|
384
|
protected function getSelectElementForSearchQuery($params_select, $user_id, $ids, $id_limit = null, $count_limit = null, $ids_display = null)
|
385
|
385
|
{
|