| author | cavaliet |
| Fri, 21 Oct 2011 17:10:54 +0200 | |
| changeset 9 | cc32af725176 |
| parent 8 | 7d2fb5d7c9ff |
| child 10 | a1234ceba912 |
| permissions | -rwxr-xr-x |
| 2 | 1 |
<?php |
2 |
/* |
|
3 |
* This file is part of the WikiTagBundle package. |
|
4 |
* |
|
5 |
* (c) IRI <http://www.iri.centrepompidou.fr/> |
|
6 |
* |
|
7 |
* For the full copyright and license information, please view the LICENSE |
|
8 |
* file that was distributed with this source code. |
|
9 |
*/ |
|
10 |
||
11 |
namespace IRI\Bundle\WikiTagBundle\Controller; |
|
12 |
||
13 |
use IRI\Bundle\WikiTagBundle\Entity\DocumentTag; |
|
14 |
use IRI\Bundle\WikiTagBundle\Entity\Tag; |
|
15 |
use IRI\Bundle\WikiTagBundle\Utils\WikiTagUtils; |
|
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
16 |
use Pagerfanta\Pagerfanta; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
17 |
use Pagerfanta\Adapter\ArrayAdapter; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
18 |
use Pagerfanta\Adapter\DoctrineORMAdapter; |
| 2 | 19 |
use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
20 |
use Symfony\Component\HttpFoundation\Response; |
|
21 |
||
22 |
||
23 |
class WikiTagController extends Controller |
|
24 |
{ |
|
25 |
/** |
|
26 |
* Fake index action |
|
27 |
*/ |
|
28 |
public function indexAction() |
|
29 |
{ |
|
30 |
return new Response('<html><body>Nothing to see here.</body></html>'); |
|
31 |
} |
|
32 |
||
33 |
/** |
|
34 |
* Renders the little html to add the css |
|
35 |
*/ |
|
36 |
public function addCssAction() |
|
37 |
{ |
|
38 |
return $this->render('WikiTagBundle:WikiTag:css.html.twig'); |
|
39 |
} |
|
40 |
||
41 |
/** |
|
42 |
* Renders the little html to add the javascript |
|
43 |
* TODO: review why this injection in javascript, t10n? |
|
44 |
*/ |
|
45 |
public function addJavascriptAction() |
|
46 |
{ |
|
47 |
$cats = $this->getDoctrine()->getRepository('WikiTagBundle:Category')->findOrderedCategories(); |
|
48 |
// $cats is {"Label":"Créateur"},{"Label":"Datation"},... |
|
49 |
$nbCats = count($cats); |
|
50 |
$ar = array('' => ''); |
|
51 |
for($i=0;$i<$nbCats;$i++){ |
|
| 7 | 52 |
$temp = array($cats[$i]["label"] => $cats[$i]["label"]); |
| 2 | 53 |
$ar = array_merge($ar, $temp); |
54 |
} |
|
55 |
// ... so we create is json like {"":""},{"Créateur":"Créateur"},{"Datation":"Datation"},... |
|
56 |
$categories = json_encode($ar); |
|
57 |
return $this->render('WikiTagBundle:WikiTag:javascript.html.twig', array('categories' => $categories)); |
|
58 |
} |
|
59 |
||
60 |
/** |
|
61 |
* Display a list of ordered tag for a document |
|
62 |
* @param integer $id_doc |
|
63 |
*/ |
|
64 |
public function documentTagsAction($id_doc) |
|
65 |
{ |
|
66 |
$ordered_tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOrderedTagsForDoc($id_doc); |
|
67 |
return $this->render('WikiTagBundle:WikiTag:documentTags.html.twig', array('ordered_tags' => $ordered_tags, 'doc_id' => $id_doc)); |
|
68 |
} |
|
69 |
||
70 |
/** |
|
71 |
* |
|
72 |
* TODO : Enter description here ... |
|
73 |
* @return \Symfony\Bundle\FrameworkBundle\Controller\Response |
|
74 |
*/ |
|
75 |
public function tagUpDownAction() |
|
76 |
{ |
|
77 |
||
78 |
$req = $this->getRequest()->request; |
|
79 |
$id_doc = $req->get('wikitag_document_id'); |
|
80 |
// post vars new_order and old_order indicate the position (from 1) of the tag in the list. |
|
81 |
// NB : it is different from the DocumentTag.order in the database. |
|
82 |
$new_order = intval($req->get('new_order')) - 1; |
|
83 |
$old_order = intval($req->get('old_order')) - 1; |
|
84 |
// First we get the DocumentTags |
|
85 |
$em = $this->getDoctrine()->getEntityManager(); |
|
86 |
$ordered_tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOrderedTagsForDoc($id_doc); |
|
87 |
// We change the moved DocumentTag's order |
|
88 |
$new_dt_order = $ordered_tags[$new_order]->getTagOrder(); |
|
89 |
$moved_dt = $ordered_tags[$old_order]; |
|
90 |
$moved_dt->setTagOrder($new_dt_order); |
|
91 |
// We move the TaggedSheets's order |
|
92 |
if($new_order > $old_order){ |
|
93 |
// And we decrease the other ones |
|
94 |
for ($i=($old_order+1); $i <= ($new_order); $i++){ |
|
95 |
$dt = $ordered_tags[$i]; |
|
96 |
$dt->setTagOrder($dt->getTagOrder() - 1); |
|
97 |
} |
|
98 |
} |
|
99 |
else{ |
|
100 |
// And we increase the other ones |
|
101 |
for ($i=$new_order; $i <= ($old_order-1); $i++){ |
|
102 |
$dt = $ordered_tags[$i]; |
|
103 |
$dt->setTagOrder($dt->getTagOrder() + 1); |
|
104 |
} |
|
105 |
} |
|
106 |
// Save datas. |
|
107 |
$em->flush(); |
|
108 |
||
109 |
return $this->renderDocTags($id_doc); |
|
110 |
} |
|
111 |
||
112 |
/** |
|
113 |
* |
|
114 |
* TODO: Enter description here ... |
|
115 |
* @return \Symfony\Bundle\FrameworkBundle\Controller\Response |
|
116 |
*/ |
|
117 |
public function removeTagFromListAction() |
|
118 |
{ |
|
119 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
120 |
$id_tag = $this->getRequest()->request->get('tag_id'); |
|
121 |
// We get the DocumentTag meant to be deleted, and remove it. |
|
122 |
$em = $this->getDoctrine()->getEntityManager(); |
|
123 |
$dt = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOneBy(array('tag' => $id_tag, 'document' => $id_doc)); |
|
124 |
$em->remove($dt); |
|
125 |
$em->flush(); |
|
126 |
||
127 |
return $this->renderDocTags($id_doc); |
|
128 |
} |
|
129 |
||
130 |
/** |
|
131 |
* |
|
132 |
* TODO: Enter description here ... |
|
133 |
*/ |
|
134 |
public function modifyDocumentTagAction() |
|
135 |
{ |
|
136 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
137 |
$tag_label = $this->getRequest()->request->get('value'); |
|
138 |
$id_moved_tag = $this->getRequest()->request->get('id'); |
|
139 |
$moved_tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findOneBy(array('id' => $id_moved_tag)); |
|
140 |
if($tagLabel!=$movedTag->getLabel()){ |
|
141 |
// We get the DocumentTags |
|
142 |
$em = $this->getDoctrine()->getEntityManager(); |
|
143 |
$tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findBy(array('document' => $id_doc)); |
|
144 |
$nb_tags = count($tags); |
|
145 |
$found = false; |
|
146 |
$i = 0; |
|
147 |
while($i<$nb_tags && $found==false){ |
|
148 |
$dt = $tags[$i]; |
|
149 |
if(strtolower($dt->getTag()->getLabel())==strtolower($tag_label)){ |
|
150 |
$found = true; |
|
151 |
} |
|
152 |
$i++; |
|
153 |
} |
|
154 |
// If the label was found, we sent a bad request |
|
155 |
if($found==true){ |
|
156 |
return new Response(json_encode(array('error' => 'duplicate_tag', 'message' => sprintf("Le tag %s existe déjà pour cette fiche.", $tag_label))),400); |
|
157 |
} |
|
158 |
// We create the new tag or get the already existing tag. $tag, $revision_id, $created |
|
159 |
$ar = WikiTagUtils::getOrCreateTag($tag_label, $this->getDoctrine());// tag, revision_id, created = get_or_create_tag(tag_label) |
|
160 |
$tag = $ar[0]; |
|
161 |
$revision_id = $ar[1]; |
|
162 |
$created = $ar[2]; |
|
163 |
// We get the DocumentTag and change its tag |
|
164 |
$dt = $this->getDoctrine()->getRepository('WikiTagBundle:WikiTagDocumentTag')->findOneBy(array('document' => $id_doc, 'tag' => $id_moved_tag)); |
|
165 |
$dt->setTag($tag); |
|
166 |
$dt->setWikipediaRevisionId($revision_id); |
|
167 |
// |
|
168 |
// HERE QUERY TO GET A INDEX_NOTE/SCORE for the tag. Here is python code : |
|
169 |
//kwargs = {DJANGO_ID + "__exact": unicode(ds_id)} |
|
170 |
//results = SearchQuerySet().filter(title=tag_label).filter_or(description=tag_label).filter(**kwargs) |
|
171 |
//if len(results) > 0: |
|
172 |
// ts.index_note = results[0].score |
|
173 |
// |
|
174 |
// We save the datas |
|
175 |
$doc = $this->getDoctrine()->getRepository('WikiTagBundle:Document')->findOneBy(array('id' => $id_doc)); |
|
176 |
$doc->setManualOrder(true); |
|
177 |
$em->flush(); |
|
178 |
} |
|
179 |
||
180 |
return $this->renderDocTags($id_doc); |
|
181 |
} |
|
182 |
||
183 |
/** |
|
184 |
* |
|
| 7 | 185 |
* @Route("/wtrtd") |
| 2 | 186 |
* TODO : Enter description here ... |
| 7 | 187 |
* TODO : implement |
| 2 | 188 |
*/ |
189 |
public function reorderTagDocumentAction() |
|
190 |
{ |
|
191 |
$id_Doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
192 |
return $this->renderDocTags($id_doc); |
|
193 |
} |
|
194 |
||
195 |
/** |
|
196 |
* |
|
197 |
* TODO: Enter description here ... |
|
198 |
*/ |
|
199 |
public function addTagAction() |
|
200 |
{ |
|
201 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
202 |
$tag_label = $this->getRequest()->request->get('value'); |
|
203 |
// We get the DocumentTags |
|
204 |
$em = $this->getDoctrine()->getEntityManager(); |
|
|
5
45378793512a
Correct tag insert + external id on doc
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
205 |
$tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findByDocumentExternalId($id_doc); |
| 2 | 206 |
$nb_tags = count($tags); |
207 |
$found = false; |
|
208 |
$i = 0; |
|
209 |
while($i<$nb_tags && $found==false){ |
|
210 |
$dt = $tags[$i]; |
|
211 |
if(strtolower($dt->getTag()->getLabel())==strtolower($tag_label)){ |
|
212 |
$found = true; |
|
213 |
} |
|
214 |
$i++; |
|
215 |
} |
|
216 |
// If the label was found, we sent a bad request |
|
217 |
if($found==true){ |
|
218 |
//TODO : translation |
|
219 |
return new Response(json_encode(array('error' => 'duplicate_tag', 'message' => sprintf("Le tag %s existe déjà pour cette fiche.", $tag_label))),400); |
|
220 |
} |
|
| 8 | 221 |
// returns array($tag, $revision_id, $created) |
| 2 | 222 |
$ar = WikiTagUtils::getOrCreateTag($tag_label, $this->getDoctrine());// tag, revision_id, created = get_or_create_tag(tag_label) |
223 |
$tag = $ar[0]; |
|
224 |
$revision_id = $ar[1]; |
|
225 |
$created = $ar[2]; |
|
| 8 | 226 |
|
|
5
45378793512a
Correct tag insert + external id on doc
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
227 |
$tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findByDocumentExternalId($id_doc, array('tag'=>$tag->getId())); |
| 2 | 228 |
$nb_tags = count($tags); |
229 |
||
230 |
if($created==true || $nb_tags==0){ |
|
231 |
$new_order_ar = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->getMaxOrder($id_doc); |
|
232 |
// The result is a double array. And reset(reset($newOrderAr)) is not allowed. And a string is returned. |
|
233 |
$a1 = reset($new_order_ar); |
|
234 |
$new_order = intval(reset($a1)) + 1; |
|
235 |
// TODO: use a factory that returns an DocumentTagInterface |
|
236 |
$new_DT = new DocumentTag(); |
|
|
5
45378793512a
Correct tag insert + external id on doc
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
237 |
$new_DT->setDocument($this->getDoctrine()->getRepository('WikiTagBundle:Document')->findOneByExternalId($id_doc)); |
| 2 | 238 |
$new_DT->setTag($tag); |
239 |
$new_DT->setOriginalOrder($new_order); |
|
240 |
$new_DT->setTagOrder($new_order); |
|
241 |
$new_DT->setWikipediaRevisionId($revision_id); |
|
242 |
$em->persist($new_DT); |
|
243 |
$em->flush(); |
|
244 |
} |
|
245 |
||
246 |
return $this->renderDocTags($id_doc); |
|
247 |
} |
|
248 |
||
249 |
||
250 |
/** |
|
251 |
* |
|
252 |
* TODO: Enter description here ... |
|
253 |
* @return \Symfony\Bundle\FrameworkBundle\Controller\Response |
|
254 |
*/ |
|
255 |
public function removeWpLinkAction() |
|
256 |
{ |
|
257 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
258 |
$id_tag = $this->getRequest()->request->get('tag_id'); |
|
259 |
$tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->find($id_tag); |
|
260 |
//return new Response(var_dump(array($tag))); |
|
261 |
// We search if the unsemantized version of the tag already exist. |
|
262 |
$un_tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findOneBy(array('label'=>$tag->getLabel(), 'urlStatus'=>Tag::$TAG_URL_STATUS_DICT['null_result'])); |
|
263 |
$em = $this->getDoctrine()->getEntityManager(); |
|
264 |
if(!$un_tag){ |
|
265 |
// Create another tag almost identical, without the W info |
|
266 |
// TODO: use a factory that return a TagInterface |
|
267 |
$un_tag = new Tag(); |
|
268 |
$un_tag->setLabel($tag->getLabel()); |
|
269 |
$un_tag->setOriginalLabel($tag->getOriginalLabel()); |
|
270 |
$un_tag->setUrlStatus(Tag::$TAG_URL_STATUS_DICT['null_result']); |
|
271 |
$un_tag->setWikipediaUrl(null); |
|
272 |
$un_tag->setWikipediaPageId(null); |
|
273 |
$un_tag->setDbpediaUri(null); |
|
274 |
$un_tag->setCategory($tag->getCategory()); |
|
275 |
$un_tag->setAlias($tag->getAlias()); |
|
276 |
$un_tag->setPopularity($tag->getPopularity()); |
|
277 |
$em->persist($un_tag); |
|
278 |
} |
|
279 |
// We associate the unsemantized tag to the DocumentTag and save datas |
|
|
5
45378793512a
Correct tag insert + external id on doc
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
280 |
// TODO: do the request on external id of document |
| 8 | 281 |
$dt = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOneBy(array('document' => $id_doc, 'tag' => $id_tag)); |
| 2 | 282 |
$dt->setTag($un_tag); |
283 |
$em->flush(); |
|
284 |
||
285 |
return $this->renderDocTags($id_doc); |
|
286 |
} |
|
287 |
||
288 |
||
289 |
/** |
|
290 |
* |
|
291 |
* TODO: Enter description here ... |
|
292 |
*/ |
|
293 |
public function updateTagCategoryAction() |
|
294 |
{ |
|
295 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
296 |
$id_tag = $this->getRequest()->request->get('id'); |
|
297 |
$cat_label = $this->getRequest()->request->get('value'); |
|
298 |
// We get the Tag and update its category. |
|
299 |
$em = $this->getDoctrine()->getEntityManager(); |
|
300 |
$tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->find($id_tag); |
|
301 |
if($cat_label==''){ |
|
302 |
$cat = null; |
|
303 |
$tag->nullCategory(); |
|
304 |
} |
|
305 |
else{ |
|
306 |
$cat = $this->getDoctrine()->getRepository('WikiTagBundle:Category')->findOneBy(array('label' => $cat_label)); |
|
307 |
$tag->setCategory($cat); |
|
308 |
} |
|
309 |
$em->flush(); |
|
310 |
||
311 |
return $this->renderDocTags($id_doc); |
|
312 |
} |
|
313 |
||
314 |
||
315 |
/** |
|
316 |
* |
|
317 |
* Generic render partial template |
|
318 |
* @param unknown_type $id_doc |
|
319 |
*/ |
|
320 |
public function renderDocTags($id_doc) |
|
321 |
{ |
|
322 |
$ordered_tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOrderedTagsForDoc($id_doc); |
|
323 |
return $this->render('WikiTagBundle:WikiTag:tagTable.html.twig', array('ordered_tags' => $ordered_tags, 'doc_id' => $id_doc)); |
|
324 |
} |
|
| 7 | 325 |
|
326 |
/** |
|
327 |
* |
|
328 |
* @Route("/wtrwi") |
|
329 |
* TODO: Enter description here ... |
|
330 |
* TODO : implement |
|
331 |
*/ |
|
332 |
public function resetWpInfoAction() |
|
333 |
{ |
|
334 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
335 |
return $this->renderDocTags($id_doc); |
|
336 |
} |
|
337 |
||
338 |
||
339 |
/** |
|
340 |
* |
|
341 |
* TODO : Enter description here ... |
|
342 |
* TODO : implement |
|
343 |
* @return \Symfony\Bundle\FrameworkBundle\Controller\Response |
|
344 |
*/ |
|
345 |
public function updateTagAliasAction() |
|
346 |
{ |
|
347 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
348 |
return $this->renderDocTags($id_doc); |
|
349 |
} |
|
350 |
||
351 |
/** |
|
352 |
* List of all tags |
|
353 |
* TODO: Enter description here ... |
|
354 |
*/ |
|
355 |
public function allTagsAction() |
|
356 |
{ |
|
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
357 |
//$tags = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findBy(array('urlStatus' => 2)); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
358 |
//$tags = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findBy(array('id' => 10)); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
359 |
// We get/set all the parameters for the search and pagination. |
| 7 | 360 |
// $this->getRequest()->query->get('foo') does not work "because" we are a second controller. So we have to use $_GET. |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
361 |
// Searched string |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
362 |
$searched = ""; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
363 |
if(array_key_exists('searched', $_GET)){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
364 |
$searched = $_GET['searched']; |
| 7 | 365 |
} |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
366 |
// Number of tags per page |
| 8 | 367 |
$nb_by_page = 50; |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
368 |
if(array_key_exists('nb_by_page', $_GET)){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
369 |
$nb_by_page = intval($_GET['nb_by_page']); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
370 |
} |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
371 |
// Current page number |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
372 |
$num_page = 1; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
373 |
if(array_key_exists('num_page', $_GET)){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
374 |
$num_page = intval($_GET['num_page']); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
375 |
} |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
376 |
|
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
377 |
|
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
378 |
|
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
379 |
// We build the query. |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
380 |
$qb = $this->getDoctrine()->getEntityManager()->createQueryBuilder(); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
381 |
$qb->select('t') |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
382 |
->from('WikiTagBundle:Tag','t'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
383 |
// We add the search string if necessary |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
384 |
if($searched!=""){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
385 |
// We replace "*" by "%". |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
386 |
$qb->where($qb->expr()->orx($qb->expr()->like('t.normalizedLabel', "'".str_replace("*", "%", $searched)."'"))); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
387 |
} |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
388 |
// W add the sorting criteria |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
389 |
$sort = "popd"; // sort by descendent popularity by default. |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
390 |
$reverse_sort = "popa"; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
391 |
if(array_key_exists('sort', $_GET)){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
392 |
$sort = $_GET['sort']; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
393 |
} |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
394 |
$sort_query = "t.popularity DESC t.normalizedLabel ASC t.label ASC"; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
395 |
switch($sort){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
396 |
case "popd": |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
397 |
$qb->addOrderBy('t.popularity','DESC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
398 |
$qb->addOrderBy('t.normalizedLabel','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
399 |
$qb->addOrderBy('t.label','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
400 |
$reverse_sort = "popa"; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
401 |
break; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
402 |
case "popa": |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
403 |
$qb->addOrderBy('t.popularity','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
404 |
$qb->addOrderBy('t.normalizedLabel','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
405 |
$qb->addOrderBy('t.label','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
406 |
$reverse_sort = "popd"; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
407 |
break; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
408 |
case "labd": |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
409 |
$qb->addOrderBy('t.normalizedLabel','DESC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
410 |
$qb->addOrderBy('t.label','DESC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
411 |
$reverse_sort = "laba"; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
412 |
break; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
413 |
case "laba": |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
414 |
$qb->addOrderBy('t.normalizedLabel','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
415 |
$qb->addOrderBy('t.label','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
416 |
$reverse_sort = "labd"; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
417 |
break; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
418 |
} |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
419 |
|
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
420 |
// We paginate |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
421 |
$adapter = new DoctrineORMAdapter($qb); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
422 |
$pagerfanta = new Pagerfanta($adapter); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
423 |
$pagerfanta->setMaxPerPage($nb_by_page); // 10 by default |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
424 |
$last_page = $pagerfanta->getNbPages(); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
425 |
$pagerfanta->setCurrentPage($num_page); // 1 by default |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
426 |
$nb_total = $pagerfanta->getNbResults(); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
427 |
$tags = $pagerfanta->getCurrentPageResults(); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
428 |
$pagerfanta->haveToPaginate(); // whether the number of results if higher than the max per page |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
429 |
|
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
430 |
// We get the previous and next page number |
| 8 | 431 |
$prev_page = 1; |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
432 |
if($pagerfanta->hasPreviousPage()){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
433 |
$prev_page = $pagerfanta->getPreviousPage(); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
434 |
} |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
435 |
$next_page = $last_page; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
436 |
if($pagerfanta->hasNextPage()){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
437 |
$next_page = $pagerfanta->getNextPage(); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
438 |
} |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
439 |
// We calculate start_index and end_index (tag number in the whole list) |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
440 |
$start_index = 1 + (($num_page - 1) * $nb_by_page); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
441 |
$end_index = min($nb_total, $start_index + $nb_by_page - 1); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
442 |
|
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
443 |
// We build the list of tags's first letters to make quick search. |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
444 |
$search_def = array('A'=>'a*', 'B'=>'b*', 'C'=>'c*', 'D'=>'d*', 'E'=>'e*', 'F'=>'f*', 'G'=>'g*', 'H'=>'h*', 'I'=>'i*', 'J'=>'j*', 'K'=>'k*', 'L'=>'l*', |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
445 |
'M'=>'m*', 'N'=>'n*', 'O'=>'o*', 'P'=>'p*', 'Q'=>'q*', 'R'=>'r*', 'S'=>'s*', 'T'=>'t*', 'U'=>'u*', 'V'=>'v*', 'W'=>'w*', 'X'=>'x*', 'Y'=>'y*', 'Z'=>'z*'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
446 |
|
| 8 | 447 |
return $this->render('WikiTagBundle:WikiTag:TagList.html.twig', |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
448 |
array('tags' => $tags, 'searched' => $searched, 'search_def' => $search_def, 'nb_by_page' => $nb_by_page, 'sort' => $sort, |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
449 |
'start_index' => $start_index, 'end_index' => $end_index, 'nb_total' => $nb_total, 'num_page' => $num_page, 'last_page' => $last_page, |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
450 |
'prev_page' => $prev_page, 'next_page' => $next_page, 'reverse_sort' => $reverse_sort)); |
| 7 | 451 |
} |
| 2 | 452 |
|
453 |
||
454 |
} |