-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathArticlesController.php
More file actions
161 lines (141 loc) · 5.12 KB
/
ArticlesController.php
File metadata and controls
161 lines (141 loc) · 5.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
namespace ServerGrove\KbBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use ServerGrove\KbBundle\Document\Article;
use ServerGrove\KbBundle\Document\Category;
use Symfony\Component\Locale\Locale;
/**
* Class ArticlesController
*
* @Route("/{_locale}/categories/{path}/articles", requirements={"_locale"="en|es|pt", "path"=".+"})
*
* @author Ismael Ambrosi<ismael@servergrove.com>
*/
class ArticlesController extends Controller
{
/**
*
* @Route("/{slug}.{_format}", name="sgkb_articles_view", defaults={"_format"="html"}, requirements={"_format"="html|json|xml"})
* @ParamConverter("category", class="ServerGroveKbBundle:Category")
* @ParamConverter("article", class="ServerGroveKbBundle:Article")
* @Template
*
* @param Article $article
* @param Category $category
* @param bool $registerView
* @param bool $showComments
*
* @return array
*/
public function viewAction(Article $article, Category $category, $registerView = true, $showComments = true)
{
if ($registerView) {
$this->registerView($article);
}
$this->checkLocale($article);
return array(
'category' => $category,
'article' => $article,
'showComments' => $showComments
);
}
private function checkLocale(Article $article)
{
$dm = $this->getDocumentManager();
$locales = $dm->getLocalesFor($article);
$locale = $this->getRequest()->getLocale();
if (!in_array($locale, $locales)) {
$article->setTitle($article->getTitle().'(Needs to be translated by Google)');
}
}
/**
* @Template
*
* @param \ServerGrove\KbBundle\Document\Article $article
* @param \ServerGrove\KbBundle\Document\Category $category
* @return array
*/
public function articleContentAction(Article $article, Category $category = null, $showComments = true)
{
!is_null($category) || $category = $article->getDefaultCategory();
$locales = $this->getActiveLocales($article, $this->getDocumentManager()->getLocalesFor($article));
$localeNames = $this->getLocaleNames($locales);
$currentLocale = $this->getRequest()->getLocale();
foreach ($locales as $locale) {
$localeNames[$locale]['current'] = $currentLocale == $locale;
$localeNames[$locale]['path'] = $this->generateUrl(
'sgkb_articles_view',
array(
'_format' => $this->getRequest()->get('_format'),
'_locale' => $locale,
'slug' => $article->getSlug(),
'path' => $category->getPath()
)
);
}
$article = $this->getDocumentManager()->refresh($article);
$this->checkLocale($article);
$articles = $category->getArticles();
$index = $articles->indexOf($article);
$container = $this->get('service_container');
return array(
'article' => $article,
'category' => $category,
'locales' => $locales,
'localeNames' => $localeNames,
'previousArticle' => $articles->get($index - 1),
'nextArticle' => $articles->get($index + 1),
'enable_related_urls' => $container->getParameter('server_grove_kb.article.enable_related_urls'),
'showComments' => $showComments
);
}
/**
* @param \ServerGrove\KbBundle\Document\Article $article
*/
private function registerView(Article $article)
{
$article->registerView();
$this->getDocumentManager()->persist($article);
$this->getDocumentManager()->flush();
}
/**
* @param array $locales
* @return array
*/
private function getLocaleNames(array $locales)
{
$names = array_map(
function ($locale) {
return array('name'=> Locale::getDisplayLanguage($locale));
},
$locales
);
return array_combine($locales, $names);
}
/**
* @param \ServerGrove\KbBundle\Document\Article $article
* @param array $locales
* @return array
*/
private function getActiveLocales(Article $article, array $locales)
{
$activeLocales = array();
foreach ($locales as $locale) {
try {
$articleTranslation = $this->getDocumentManager()->findTranslation(
'ServerGrove\KbBundle\Document\Article',
$article->getId(),
$locale,
false
);
if ($articleTranslation->getIsActive()) {
$activeLocales[] = $locale;
}
} catch (\InvalidArgumentException $e) {
}
}
return $activeLocales;
}
}