Controller/WikiTagController.php
author ymh <ymh.work@gmail.com>
Thu, 17 Nov 2011 11:29:26 +0100
changeset 34 21fab44f46fe
parent 30 d2fba1e3b94b
child 35 92ddb5488eb4
permissions -rwxr-xr-x
add event on tag changed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<?php
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
/*
21
780ef37e63b9 add route parameter
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
     3
* This file is part of the WikiTagBundle package.
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
*
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
* (c) IRI <http://www.iri.centrepompidou.fr/>
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
*
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
* For the full copyright and license information, please view the LICENSE
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
* file that was distributed with this source code.
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
*/
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
namespace IRI\Bundle\WikiTagBundle\Controller;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
10
a1234ceba912 add first letter list. It works but searching ' bugs.
cavaliet
parents: 9
diff changeset
    13
use Doctrine\ORM\Query\ResultSetMapping;
a1234ceba912 add first letter list. It works but searching ' bugs.
cavaliet
parents: 9
diff changeset
    14
use Doctrine\DBAL\DriverManager;
a1234ceba912 add first letter list. It works but searching ' bugs.
cavaliet
parents: 9
diff changeset
    15
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
use IRI\Bundle\WikiTagBundle\Entity\DocumentTag;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
use IRI\Bundle\WikiTagBundle\Entity\Tag;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
use IRI\Bundle\WikiTagBundle\Utils\WikiTagUtils;
9
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
    19
use Pagerfanta\Pagerfanta;
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
    20
use Pagerfanta\Adapter\ArrayAdapter;
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
    21
use Pagerfanta\Adapter\DoctrineORMAdapter;
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
use Symfony\Component\HttpFoundation\Response;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
class WikiTagController extends Controller
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
{
10
a1234ceba912 add first letter list. It works but searching ' bugs.
cavaliet
parents: 9
diff changeset
    28
    private static $SEARCH_STAR_CHARACTER = "*";
a1234ceba912 add first letter list. It works but searching ' bugs.
cavaliet
parents: 9
diff changeset
    29
    
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
    /**
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
     * Fake index action
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
     */
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
    public function indexAction()
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    34
    {
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    35
        return new Response('<html><body>Nothing to see here.</body></html>');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    36
    }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    37
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    38
    /**
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    39
     * Renders the little html to add the css
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    40
     */
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    41
    public function addCssAction()
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    42
    {
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    43
        return $this->render('WikiTagBundle:WikiTag:css.html.twig');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    44
    }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    45
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    46
    /**
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    47
     * Renders the little html to add the javascript
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    48
     * TODO: review why this injection in javascript, t10n?
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    49
     */
22
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
    50
    public function addJavascriptAction($tags_list=FALSE)
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    51
    {
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    52
        $cats = $this->getDoctrine()->getRepository('WikiTagBundle:Category')->findOrderedCategories();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    53
        // $cats is {"Label":"Créateur"},{"Label":"Datation"},...
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    54
        $nbCats = count($cats);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    55
        $ar = array('' => '');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    56
        for($i=0;$i<$nbCats;$i++){
7
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
    57
            $temp = array($cats[$i]["label"] => $cats[$i]["label"]);
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    58
            $ar = array_merge($ar, $temp);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    59
        }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    60
        // ... so we create is json like {"":""},{"Créateur":"Créateur"},{"Datation":"Datation"},...
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    61
        $categories = json_encode($ar);
22
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
    62
        return $this->render('WikiTagBundle:WikiTag:javascript.html.twig', array('categories' => $categories,'tags_list' => $tags_list));
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    63
    }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    64
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    65
    /**
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    66
     * Display a list of ordered tag for a document
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    67
     * @param integer $id_doc
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    68
     */
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    69
    public function documentTagsAction($id_doc)
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    70
    {
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    71
        $ordered_tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOrderedTagsForDoc($id_doc);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    72
        return $this->render('WikiTagBundle:WikiTag:documentTags.html.twig', array('ordered_tags' => $ordered_tags, 'doc_id' => $id_doc));
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    73
    }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    74
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    75
    /**
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    76
     *
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    77
     * TODO : Enter description here ...
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    78
     * @return \Symfony\Bundle\FrameworkBundle\Controller\Response
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    79
     */
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    80
    public function tagUpDownAction()
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    81
    {
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    82
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    83
        $req = $this->getRequest()->request;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    84
        $id_doc = $req->get('wikitag_document_id');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    85
        // post vars new_order and old_order indicate the position (from 1) of the tag in the list.
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    86
        // NB : it is different from the DocumentTag.order in the database.
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    87
        $new_order = intval($req->get('new_order')) - 1;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    88
        $old_order = intval($req->get('old_order')) - 1;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    89
        // First we get the DocumentTags
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    90
        $em = $this->getDoctrine()->getEntityManager();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    91
        $ordered_tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOrderedTagsForDoc($id_doc);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    92
        // We change the moved DocumentTag's order
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    93
        $new_dt_order = $ordered_tags[$new_order]->getTagOrder();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    94
        $moved_dt = $ordered_tags[$old_order];
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    95
        $moved_dt->setTagOrder($new_dt_order);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    96
        // We move the TaggedSheets's order
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    97
        if($new_order > $old_order){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    98
            // And we decrease the other ones
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
    99
            for ($i=($old_order+1); $i <= ($new_order); $i++){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   100
                $dt = $ordered_tags[$i];
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   101
                $dt->setTagOrder($dt->getTagOrder() - 1);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   102
            }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   103
        }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   104
        else{
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   105
            // And we increase the other ones
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   106
            for ($i=$new_order; $i <= ($old_order-1); $i++){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   107
                $dt = $ordered_tags[$i];
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   108
                $dt->setTagOrder($dt->getTagOrder() + 1);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   109
            }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   110
        }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   111
        // Save datas.
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   112
        $em->flush();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   113
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   114
        return $this->renderDocTags($id_doc);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   115
    }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   116
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   117
    /**
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   118
     *
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   119
     * TODO: Enter description here ...
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   120
     * @return \Symfony\Bundle\FrameworkBundle\Controller\Response
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   121
     */
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   122
    public function removeTagFromListAction()
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   123
    {
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   124
        $id_doc = $this->getRequest()->request->get('wikitag_document_id');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   125
        $id_tag = $this->getRequest()->request->get('tag_id');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   126
        // We get the DocumentTag meant to be deleted, and remove it.
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   127
        $em = $this->getDoctrine()->getEntityManager();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   128
        $dt = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOneBy(array('tag' => $id_tag, 'document' => $id_doc));
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   129
        $em->remove($dt);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   130
        $em->flush();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   131
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   132
        return $this->renderDocTags($id_doc);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   133
    }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   134
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   135
    /**
22
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   136
     * Modify the tag in the context of a tag list for one document
29
7496254cfead correct add tag
ymh <ymh.work@gmail.com>
parents: 26
diff changeset
   137
     *
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   138
     */
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   139
    public function modifyDocumentTagAction()
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   140
    {
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   141
        $id_doc = $this->getRequest()->request->get('wikitag_document_id');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   142
        $tag_label = $this->getRequest()->request->get('value');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   143
        $id_moved_tag = $this->getRequest()->request->get('id');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   144
        $moved_tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findOneBy(array('id' => $id_moved_tag));
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   145
        if($tag_label!=$moved_tag->getLabel()){
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   146
            // We get the DocumentTags
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   147
            $em = $this->getDoctrine()->getEntityManager();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   148
            $tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findBy(array('document' => $id_doc));
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   149
            $nb_tags = count($tags);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   150
            $found = false;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   151
            $i = 0;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   152
            while($i<$nb_tags && $found==false){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   153
                $dt = $tags[$i];
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   154
                if(strtolower($dt->getTag()->getLabel())==strtolower($tag_label)){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   155
                    $found = true;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   156
                }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   157
                $i++;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   158
            }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   159
            // If the label was found, we sent a bad request
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   160
            if($found==true){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   161
                return new Response(json_encode(array('error' => 'duplicate_tag', 'message' => sprintf("Le tag %s existe déjà pour cette fiche.", $tag_label))),400);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   162
            }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   163
            // We create the new tag or get the already existing tag. $tag, $revision_id, $created
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   164
            $ar = WikiTagUtils::getOrCreateTag($tag_label, $this->getDoctrine());// tag, revision_id, created = get_or_create_tag(tag_label)
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   165
            $tag = $ar[0];
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   166
            $revision_id = $ar[1];
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   167
            $created = $ar[2];
22
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   168
            
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   169
            // We get the DocumentTag and change its tag
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   170
            $dt = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOneBy(array('document' => $id_doc, 'tag' => $id_moved_tag));
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   171
            $dt->setTag($tag);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   172
            $dt->setWikipediaRevisionId($revision_id);
34
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   173
            
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   174
            $score_res = $this->container->get('wiki_tag.search')->search($tag_label, array("id"=>$id_doc));
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   175
            
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   176
            if(count($score_res)>0)
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   177
            {
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   178
                $score = floatval($score_res[0]['score']);
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   179
            }
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   180
            else
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   181
            {
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   182
                $score = 0.0;
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   183
            }
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   184
            $dt->setIndexNote($score);
21fab44f46fe add event on tag changed
ymh <ymh.work@gmail.com>
parents: 30
diff changeset
   185
            
22
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   186
            // We set ManualOrder = true for the current document
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   187
            $doc = $this->getDoctrine()->getRepository('WikiTagBundle:Document')->findOneBy(array('externalId' => $id_doc));
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   188
            $doc->setManualOrder(true);
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   189
            // We save the datas
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   190
            $em->flush();
22
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   191
            // We render the document's tags
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   192
            return $this->renderDocTags($id_doc);
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   193
        }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   194
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   195
    }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   196
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   197
    /**
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   198
     *
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   199
     * TODO : Enter description here ...
7
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   200
     * TODO : implement
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   201
     */
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   202
    public function reorderTagDocumentAction()
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   203
    {
30
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   204
        $id_doc = $this->getRequest()->request->get('wikitag_document_id');
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   205
        $res = $this->getDoctrine()->getRepository('WikiTagBundle:Document');
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   206
        $doc = $res->findOneByExternalId($id_doc);
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   207
        $doc->setManualOrder(false);
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   208
        $this->getDoctrine()->getEntityManager()->persist($doc);
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   209
        
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   210
        $search_service = $this->get('wiki_tag.search');
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   211
        
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   212
        $search_service->reorderTagsForDocument($doc);
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   213
        
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   214
        $this->getDoctrine()->getEntityManager()->flush();
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   215
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   216
        return $this->renderDocTags($id_doc);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   217
    }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   218
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   219
    /**
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   220
     *
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   221
     * TODO: Enter description here ...
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   222
     */
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   223
    public function addTagAction()
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   224
    {
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   225
        $id_doc = $this->getRequest()->request->get('wikitag_document_id');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   226
        $tag_label = $this->getRequest()->request->get('value');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   227
        // We get the DocumentTags
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   228
        $em = $this->getDoctrine()->getEntityManager();
5
45378793512a Correct tag insert + external id on doc
ymh <ymh.work@gmail.com>
parents: 2
diff changeset
   229
        $tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findByDocumentExternalId($id_doc);
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   230
        $nb_tags = count($tags);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   231
        $found = false;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   232
        $i = 0;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   233
        while($i<$nb_tags && $found==false){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   234
            $dt = $tags[$i];
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   235
            if(strtolower($dt->getTag()->getLabel())==strtolower($tag_label)){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   236
                $found = true;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   237
            }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   238
            $i++;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   239
        }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   240
        // If the label was found, we sent a bad request
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   241
        if($found==true){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   242
            //TODO : translation
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   243
            return new Response(json_encode(array('error' => 'duplicate_tag', 'message' => sprintf("Le tag %s existe déjà pour cette fiche.", $tag_label))),400);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   244
        }
8
7d2fb5d7c9ff debug addtag for document
cavaliet
parents: 7
diff changeset
   245
        // returns array($tag, $revision_id, $created)
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   246
        $ar = WikiTagUtils::getOrCreateTag($tag_label, $this->getDoctrine());// tag, revision_id, created = get_or_create_tag(tag_label)
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   247
        $tag = $ar[0];
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   248
        $revision_id = $ar[1];
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   249
        $created = $ar[2];
8
7d2fb5d7c9ff debug addtag for document
cavaliet
parents: 7
diff changeset
   250
        
5
45378793512a Correct tag insert + external id on doc
ymh <ymh.work@gmail.com>
parents: 2
diff changeset
   251
        $tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findByDocumentExternalId($id_doc, array('tag'=>$tag->getId()));
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   252
        $nb_tags = count($tags);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   253
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   254
        if($created==true || $nb_tags==0){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   255
            $new_order_ar = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->getMaxOrder($id_doc);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   256
            // The result is a double array. And reset(reset($newOrderAr)) is not allowed. And a string is returned.
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   257
            $a1 = reset($new_order_ar);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   258
            $new_order = intval(reset($a1)) + 1;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   259
            // TODO: use a factory that returns an DocumentTagInterface
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   260
            $new_DT = new DocumentTag();
5
45378793512a Correct tag insert + external id on doc
ymh <ymh.work@gmail.com>
parents: 2
diff changeset
   261
            $new_DT->setDocument($this->getDoctrine()->getRepository('WikiTagBundle:Document')->findOneByExternalId($id_doc));
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   262
            $new_DT->setTag($tag);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   263
            $new_DT->setOriginalOrder($new_order);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   264
            $new_DT->setTagOrder($new_order);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   265
            $new_DT->setWikipediaRevisionId($revision_id);
30
d2fba1e3b94b correction of reorder tag (including the javascript)
ymh <ymh.work@gmail.com>
parents: 29
diff changeset
   266
            //TODO ; calculate score
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   267
            $em->persist($new_DT);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   268
            $em->flush();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   269
        }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   270
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   271
        return $this->renderDocTags($id_doc);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   272
    }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   273
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   274
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   275
    /**
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   276
     *
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   277
     * TODO: Enter description here ...
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   278
     * @return \Symfony\Bundle\FrameworkBundle\Controller\Response
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   279
     */
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   280
    public function removeWpLinkAction()
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   281
    {
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   282
        $id_doc = $this->getRequest()->request->get('wikitag_document_id');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   283
        $id_tag = $this->getRequest()->request->get('tag_id');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   284
        $tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->find($id_tag);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   285
        //return new Response(var_dump(array($tag)));
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   286
        // We search if the unsemantized version of the tag already exist.
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   287
        $un_tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findOneBy(array('label'=>$tag->getLabel(), 'urlStatus'=>Tag::$TAG_URL_STATUS_DICT['null_result']));
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   288
        $em = $this->getDoctrine()->getEntityManager();
13
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   289
        $un_tag_created = FALSE;
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   290
        if(!$un_tag){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   291
            // Create another tag almost identical, without the W info
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   292
            // TODO: use a factory that return a TagInterface
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   293
            $un_tag = new Tag();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   294
            $un_tag->setLabel($tag->getLabel());
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   295
            $un_tag->setOriginalLabel($tag->getOriginalLabel());
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   296
            $un_tag->setUrlStatus(Tag::$TAG_URL_STATUS_DICT['null_result']);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   297
            $un_tag->setWikipediaUrl(null);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   298
            $un_tag->setWikipediaPageId(null);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   299
            $un_tag->setDbpediaUri(null);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   300
            $un_tag->setCategory($tag->getCategory());
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   301
            $un_tag->setAlias($tag->getAlias());
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   302
            $un_tag->setPopularity($tag->getPopularity());
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   303
            $em->persist($un_tag);
13
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   304
            $un_tag_created = TRUE;
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   305
        }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   306
        
13
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   307
        if($id_doc && $id_doc!=""){
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   308
            // We associate the unsemantized tag to the DocumentTag and save datas
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   309
            // TODO: do the request on external id of document
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   310
            $dt = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOneBy(array('document' => $id_doc, 'tag' => $id_tag));
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   311
            $dt->setTag($un_tag);
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   312
            $em->flush();
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   313
            return $this->renderDocTags($id_doc);
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   314
        }
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   315
        else{
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   316
            // Here we are in the context of tag list.
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   317
            if($un_tag_created==TRUE){
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   318
                $em->flush();
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   319
                $num_page = $this->getRequest()->request->get('num_page');
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   320
                $nb_by_page = $this->getRequest()->request->get('nb_by_page');
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   321
                $sort = $this->getRequest()->request->get('sort');
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   322
                $searched = $this->getRequest()->request->get('searched');
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   323
                return $this->renderAllTags($num_page, $nb_by_page, $sort, $searched);
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   324
            }
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   325
            else{
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   326
                // The unsemantized version of the tag already exist, so we send an error.
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   327
                return new Response(json_encode(array('error' => 'duplicate_tag', 'message' => sprintf("La version désémantisée du tag %s (%s) existe déjà.", $un_tag->getLabel(), $un_tag->getOriginalLabel()))),400);
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   328
            }
c288952a089f Remove WP link from tag list now works.
cavaliet
parents: 12
diff changeset
   329
        }
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   330
    }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   331
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   332
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   333
    /**
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   334
     *
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   335
     * TODO: Enter description here ...
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   336
     */
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   337
    public function updateTagCategoryAction()
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   338
    {
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   339
        $id_doc = $this->getRequest()->request->get('wikitag_document_id');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   340
        $id_tag = $this->getRequest()->request->get('id');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   341
        $cat_label = $this->getRequest()->request->get('value');
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   342
        // We get the Tag and update its category.
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   343
        $em = $this->getDoctrine()->getEntityManager();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   344
        $tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->find($id_tag);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   345
        if($cat_label==''){
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   346
            $cat = null;
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   347
            $tag->nullCategory();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   348
        }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   349
        else{
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   350
            $cat = $this->getDoctrine()->getRepository('WikiTagBundle:Category')->findOneBy(array('label' => $cat_label));
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   351
            $tag->setCategory($cat);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   352
        }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   353
        $em->flush();
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   354
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   355
        if($id_doc && $id_doc!=""){
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   356
            return $this->renderDocTags($id_doc);
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   357
        }
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   358
        else{
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   359
            $num_page = $this->getRequest()->request->get('num_page');
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   360
            $nb_by_page = $this->getRequest()->request->get('nb_by_page');
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   361
            $sort = $this->getRequest()->request->get('sort');
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   362
            $searched = $this->getRequest()->request->get('searched');
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   363
            return $this->renderAllTags($num_page, $nb_by_page, $sort, $searched);
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   364
        }
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   365
    }
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   366
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   367
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   368
    /**
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   369
     *
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   370
     * Generic render partial template
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   371
     * @param unknown_type $id_doc
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   372
     */
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   373
    public function renderDocTags($id_doc)
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   374
    {
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   375
        $ordered_tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOrderedTagsForDoc($id_doc);
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   376
        return $this->render('WikiTagBundle:WikiTag:tagTable.html.twig', array('ordered_tags' => $ordered_tags, 'doc_id' => $id_doc));
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   377
    }
7
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   378
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   379
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   380
    /**
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   381
     *
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   382
     * TODO : Enter description here ...
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   383
     * TODO : implement
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   384
     * @return \Symfony\Bundle\FrameworkBundle\Controller\Response
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   385
     */
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   386
    public function updateTagAliasAction()
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   387
    {
12
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   388
        $id_tag = $this->getRequest()->request->get('id');
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   389
        $alias = $this->getRequest()->request->get('value');
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   390
        // We get the Tag and update its category.
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   391
        $em = $this->getDoctrine()->getEntityManager();
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   392
        $tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->find($id_tag);
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   393
        $tag->setAlias($alias);
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   394
        $em->flush();
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   395
        
7
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   396
        $id_doc = $this->getRequest()->request->get('wikitag_document_id');
12
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   397
        if($id_doc && $id_doc!=""){
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   398
            // In case we changed the alias from the document view
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   399
            return $this->renderDocTags($id_doc);
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   400
        }
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   401
        else{
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   402
            // In case we changed the alias from the tag list.
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   403
            $num_page = $this->getRequest()->request->get('num_page');
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   404
            $nb_by_page = $this->getRequest()->request->get('nb_by_page');
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   405
            $sort = $this->getRequest()->request->get('sort');
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   406
            $searched = $this->getRequest()->request->get('searched');
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   407
            return $this->renderAllTags($num_page, $nb_by_page, $sort, $searched);
81cc9274c20a Update Tag alias.
cavaliet
parents: 11
diff changeset
   408
        }
7
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   409
    }
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   410
    
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   411
    /**
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   412
     * List of all tags
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   413
     * TODO: Enter description here ...
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   414
     */
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   415
    public function allTagsAction()
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   416
    {
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   417
        // $this->getRequest()->query->get('foo') does not work "because" we are a second controller. So we have to use $_GET.
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   418
        // Searched string
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   419
        $searched = NULL;
9
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   420
        if(array_key_exists('searched', $_GET)){
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   421
            $searched = $_GET['searched'];
7
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   422
        }
9
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   423
        // Number of tags per page
8
7d2fb5d7c9ff debug addtag for document
cavaliet
parents: 7
diff changeset
   424
        $nb_by_page = 50;
9
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   425
        if(array_key_exists('nb_by_page', $_GET)){
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   426
            $nb_by_page = intval($_GET['nb_by_page']);
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   427
        }
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   428
        // Current page number
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   429
        $num_page = 1;
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   430
        if(array_key_exists('num_page', $_GET)){
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   431
            $num_page = intval($_GET['num_page']);
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   432
        }
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   433
        // Sorting criteria
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   434
        $sort = NULL;
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   435
        if(array_key_exists('sort', $_GET)){
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   436
            $sort = $_GET['sort'];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   437
        }
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   438
        
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   439
        // We get the needed datas in an array($tags, $num_page, $nb_by_page, $searched, $sort, $reverse_sort, $pagerfanta);
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   440
        $ar = $this->getAllTags($num_page, $nb_by_page, $sort, $searched);
16
876df98c9208 Debug search with simple quote.
cavaliet
parents: 15
diff changeset
   441
        //return new Response($ar);
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   442
        $tags = $ar[0];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   443
        $num_page = $ar[1];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   444
        $nb_by_page = $ar[2];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   445
        $searched = $ar[3];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   446
        $sort = $ar[4];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   447
        $reverse_sort = $ar[5];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   448
        $pagerfanta = $ar[6];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   449
        
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   450
        // We get the needed vars : number totals of tags, previous and next page number
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   451
        $last_page = $pagerfanta->getNbPages();
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   452
        $nb_total = $pagerfanta->getNbResults();
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   453
        $prev_page = 1;
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   454
        if($pagerfanta->hasPreviousPage()){
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   455
            $prev_page = $pagerfanta->getPreviousPage();
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   456
        }
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   457
        $next_page = $last_page;
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   458
        if($pagerfanta->hasNextPage()){
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   459
            $next_page = $pagerfanta->getNextPage();
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   460
        }
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   461
        // We calculate start_index and end_index (number of tags in the whole list)
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   462
        $start_index = 1 + (($num_page - 1) * $nb_by_page);
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   463
        $end_index = min($nb_total, $start_index + $nb_by_page - 1);
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   464
        
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   465
        // We build the list of tags's first letters to make quick search.
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   466
        $conn = $this->getDoctrine()->getEntityManager()->getConnection();
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   467
        $sql = "SELECT UPPER(SUBSTRING(normalized_label,1,1)) as fl FROM wikitag_tag GROUP BY fl ORDER BY fl";
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   468
        $letters = $conn->query($sql)->fetchAll();
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   469
        $search_def = array();
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   470
        foreach ($letters as $l){
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   471
            $search_def[$l[0]] = $l[0].WikiTagController::$SEARCH_STAR_CHARACTER;
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   472
        }
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   473
        
21
780ef37e63b9 add route parameter
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   474
        return $this->render('WikiTagBundle:WikiTag:TagList.html.twig',
780ef37e63b9 add route parameter
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   475
            array('tags' => $tags, 'searched' => $searched, 'search_def' => $search_def, 'nb_by_page' => $nb_by_page, 'sort' => $sort,
780ef37e63b9 add route parameter
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   476
            'start_index' => $start_index, 'end_index' => $end_index, 'nb_total' => $nb_total, 'num_page' => $num_page, 'last_page' => $last_page,
780ef37e63b9 add route parameter
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   477
        	'prev_page' => $prev_page, 'next_page' => $next_page, 'reverse_sort' => $reverse_sort, 'route_for_documents_by_tag' => $this->container->getParameter("wiki_tag.route_for_documents_by_tag")));
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   478
    }
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   479
22
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   480
    /**
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   481
     * Modify the tag in the context of all tags list.
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   482
     */
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   483
    public function modifyTagAction()
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   484
    {
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   485
        $tag_label = $this->getRequest()->request->get('value');
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   486
        $id_moved_tag = $this->getRequest()->request->get('id');
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   487
        $moved_tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findOneBy(array('id' => $id_moved_tag));
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   488
        // We update the tag label and its wikipedia info with the new label.
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   489
        $this->updateTagWithNewLabel($moved_tag, $tag_label);
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   490
        
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   491
        // We render the tag list.
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   492
        $num_page = $this->getRequest()->request->get('num_page');
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   493
        $nb_by_page = $this->getRequest()->request->get('nb_by_page');
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   494
        $sort = $this->getRequest()->request->get('sort');
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   495
        $searched = $this->getRequest()->request->get('searched');
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   496
        return $this->renderAllTags($num_page, $nb_by_page, $sort, $searched);
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   497
    }
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   498
    
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   499
    /**
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   500
     *
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   501
     * Resemantize the tag with its original label. Kind of undo if we changed the tag's label.
29
7496254cfead correct add tag
ymh <ymh.work@gmail.com>
parents: 26
diff changeset
   502
     *
22
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   503
     */
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   504
    public function resetWpInfoAction()
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   505
    {
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   506
        $id_moved_tag = $this->getRequest()->request->get('tag_id');
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   507
        $moved_tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findOneBy(array('id' => $id_moved_tag));
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   508
        // We update the tag label and its wikipedia info with the original label.
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   509
        $this->updateTagWithNewLabel($moved_tag, $moved_tag->getOriginalLabel());
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   510
        
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   511
        // We render the tag list.
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   512
        $num_page = $this->getRequest()->request->get('num_page');
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   513
        $nb_by_page = $this->getRequest()->request->get('nb_by_page');
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   514
        $sort = $this->getRequest()->request->get('sort');
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   515
        $searched = $this->getRequest()->request->get('searched');
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   516
        return $this->renderAllTags($num_page, $nb_by_page, $sort, $searched);
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   517
    }
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   518
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   519
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   520
    /**
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   521
     * Generic render partial template for tag list
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   522
     */
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   523
    private function updateTagWithNewLabel($tag, $label)
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   524
    {
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   525
        if($tag!=null && $label!=null){
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   526
            if($label!=$tag->getLabel()){
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   527
                // We get the Wikipedia informations for the sent label
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   528
                $tag_label_normalized = WikiTagUtils::normalizeTag($label);
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   529
                $wp_response = WikiTagUtils::getWikipediaInfo($tag_label_normalized);
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   530
                $new_label = $wp_response['new_label'];
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   531
                $status = $wp_response['status'];
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   532
                $url = $wp_response['wikipedia_url'];
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   533
                $pageid = $wp_response['pageid'];
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   534
                $dbpedia_uri = $wp_response["dbpedia_uri"];
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   535
                $wikipedia_revision_id = $wp_response['revision_id'];
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   536
                // We save the datas : we DO NOT create a new tag, we change the current tag's informations
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   537
                if($new_label!=null){
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   538
                    $tag->setLabel($new_label);
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   539
                }
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   540
                if($status!=null){
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   541
                    $tag->setUrlStatus($status);
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   542
                }
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   543
                $tag->setWikipediaUrl($url);
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   544
                $tag->setWikipediaPageId($pageid);
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   545
                $tag->setDbpediaUri($dbpedia_uri);
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   546
                // Save datas.
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   547
                $em = $this->getDoctrine()->getEntityManager();
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   548
                $em->persist($tag);
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   549
                $em->flush();
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   550
            }
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   551
        }
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   552
    }
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   553
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   554
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   555
    /**
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   556
     * Generic render partial template for tag list
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   557
     */
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   558
    public function renderAllTags($num_page=NULL, $nb_by_page=NULL, $sort=NULL, $searched=NULL)
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   559
    {
14
673b2766024e Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents: 13
diff changeset
   560
        
673b2766024e Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents: 13
diff changeset
   561
        //We get the needed datas in an array($tags, $num_page, $nb_by_page, $searched, $sort, $reverse_sort, $pagerfanta);
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   562
        $ar = $this->getAllTags($num_page, $nb_by_page, $sort, $searched);
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   563
        $tags = $ar[0];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   564
        $num_page = $ar[1];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   565
        $nb_by_page = $ar[2];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   566
        $searched = $ar[3];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   567
        $sort = $ar[4];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   568
        $reverse_sort = $ar[5];
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   569
        
21
780ef37e63b9 add route parameter
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   570
        return $this->render('WikiTagBundle:WikiTag:TagListTable.html.twig',
780ef37e63b9 add route parameter
ymh <ymh.work@gmail.com>
parents: 16
diff changeset
   571
            array('tags' => $tags, 'searched' => $searched, 'nb_by_page' => $nb_by_page, 'sort' => $sort, 'num_page' => $num_page,
22
99c15cfe420b Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents: 21
diff changeset
   572
        	'reverse_sort' => $reverse_sort, 'route_for_documents_by_tag' => $this->container->getParameter("wiki_tag.route_for_documents_by_tag")));
14
673b2766024e Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents: 13
diff changeset
   573
        
673b2766024e Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents: 13
diff changeset
   574
        return $this->getAllTags();
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   575
    }
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   576
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   577
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   578
    /**
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   579
     * Generic to get all tags with the context (pagination number, nb by page, searched string, sort)
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   580
     */
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   581
    private function getAllTags($num_page=NULL, $nb_by_page=NULL, $sort=NULL, $searched=NULL)
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   582
    {
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   583
        // We get/set all the parameters for the search and pagination.
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   584
        // Searched string
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   585
        if($searched==NULL){
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   586
            $searched = "";
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   587
        }
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   588
        // Number of tags per page
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   589
        if($nb_by_page==NULL){
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   590
            $nb_by_page = 50;
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   591
        }
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   592
        // Current page number
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   593
        if($num_page==NULL){
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   594
            $num_page = 1;
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   595
        }
9
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   596
        
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   597
        // We build the query.
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   598
        $qb = $this->getDoctrine()->getEntityManager()->createQueryBuilder();
14
673b2766024e Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents: 13
diff changeset
   599
        $qb->select('t', 'COUNT( dt.id ) AS nb_docs');
673b2766024e Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents: 13
diff changeset
   600
        $qb->from('WikiTagBundle:Tag','t');
673b2766024e Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents: 13
diff changeset
   601
        $qb->leftJoin('t.documents', 'dt', 'WITH', 't = dt.tag');
673b2766024e Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents: 13
diff changeset
   602
        $qb->addGroupBy('t.id');
673b2766024e Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents: 13
diff changeset
   603
        
16
876df98c9208 Debug search with simple quote.
cavaliet
parents: 15
diff changeset
   604
        // We add the search string if necessary
876df98c9208 Debug search with simple quote.
cavaliet
parents: 15
diff changeset
   605
        if($searched!=""){
876df98c9208 Debug search with simple quote.
cavaliet
parents: 15
diff changeset
   606
            // We replace "*" by "%", and doctrine wants ' to be ''.
876df98c9208 Debug search with simple quote.
cavaliet
parents: 15
diff changeset
   607
            $qb->where($qb->expr()->orx($qb->expr()->like('t.normalizedLabel', "'".str_replace("'", "''", str_replace("*", "%", $searched))."'")));
9
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   608
        }
16
876df98c9208 Debug search with simple quote.
cavaliet
parents: 15
diff changeset
   609
        //return $qb->getDql();
14
673b2766024e Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents: 13
diff changeset
   610
        
10
a1234ceba912 add first letter list. It works but searching ' bugs.
cavaliet
parents: 9
diff changeset
   611
        // We add the sorting criteria
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   612
        if($sort==NULL){
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   613
            $sort = "popd"; // sort by descendent popularity by default.
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   614
            $reverse_sort = "popa";
9
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   615
        }
26
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   616
        //$sort_query = "nb_docs DESC t.popularity DESC t.normalizedLabel ASC t.label ASC";
9
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   617
        switch($sort){
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   618
            case "popd":
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   619
                $qb->addOrderBy('t.popularity','DESC');
26
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   620
                $qb->addOrderBy('nb_docs','DESC');
9
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   621
                $qb->addOrderBy('t.normalizedLabel','ASC');
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   622
                $qb->addOrderBy('t.label','ASC');
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   623
                $reverse_sort = "popa";
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   624
                break;
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   625
            case "popa":
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   626
                $qb->addOrderBy('t.popularity','ASC');
26
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   627
                $qb->addOrderBy('nb_docs','DESC');
9
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   628
                $qb->addOrderBy('t.normalizedLabel','ASC');
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   629
                $qb->addOrderBy('t.label','ASC');
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   630
                $reverse_sort = "popd";
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   631
                break;
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   632
            case "labd":
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   633
                $qb->addOrderBy('t.normalizedLabel','DESC');
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   634
                $qb->addOrderBy('t.label','DESC');
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   635
                $reverse_sort = "laba";
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   636
                break;
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   637
            case "laba":
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   638
                $qb->addOrderBy('t.normalizedLabel','ASC');
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   639
                $qb->addOrderBy('t.label','ASC');
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   640
                $reverse_sort = "labd";
26
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   641
            case "nbd":
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   642
                $qb->addOrderBy('nb_docs','DESC');
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   643
                $qb->addOrderBy('t.popularity','DESC');
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   644
                $qb->addOrderBy('t.normalizedLabel','ASC');
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   645
                $qb->addOrderBy('t.label','ASC');
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   646
                $reverse_sort = "nba";
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   647
                break;
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   648
            case "nba":
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   649
                $qb->addOrderBy('nb_docs','ASC');
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   650
                $qb->addOrderBy('t.popularity','DESC');
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   651
                $qb->addOrderBy('t.normalizedLabel','ASC');
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   652
                $qb->addOrderBy('t.label','ASC');
9eab3e86db7d Add sort tags list by number of documents.
cavaliet
parents: 22
diff changeset
   653
                $reverse_sort = "nbd";
9
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   654
                break;
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   655
        }
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   656
        
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   657
        // We paginate
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   658
        $adapter = new DoctrineORMAdapter($qb);
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   659
        $pagerfanta = new Pagerfanta($adapter);
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   660
        $pagerfanta->setMaxPerPage($nb_by_page); // 10 by default
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   661
        $pagerfanta->setCurrentPage($num_page); // 1 by default
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   662
        $nb_total = $pagerfanta->getNbResults();
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   663
        $tags = $pagerfanta->getCurrentPageResults();
cc32af725176 first step for tag list and add Pagerfanta for paginator
cavaliet
parents: 8
diff changeset
   664
        $pagerfanta->haveToPaginate(); // whether the number of results if higher than the max per page
15
ab71cf8bff55 ChangesetTagBranchUserDateSummary
cavaliet
parents: 14
diff changeset
   665
        
11
5f038a505cd7 Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents: 10
diff changeset
   666
        return array($tags, $num_page, $nb_by_page, $searched, $sort, $reverse_sort, $pagerfanta);
7
7a877de630fd add files to all tags list.
tcavalie
parents: 5
diff changeset
   667
    }
2
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   668
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   669
13f43f53d0ba first implementation
ymh <ymh.work@gmail.com>
parents:
diff changeset
   670
}