mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 11:03:17 +00:00

Conflicts: lib/Alchemy/Phrasea/Command/Developer/JavascriptBuilder.php lib/Alchemy/Phrasea/Controller/Prod/Basket.php lib/Alchemy/Phrasea/Core/Provider/TaskManagerServiceProvider.php lib/classes/Exception/Feed/ItemNotFound.php lib/classes/Exception/Feed/PublisherNotFound.php lib/classes/Feed/Abstract.php lib/classes/Feed/Adapter.php lib/classes/Feed/Aggregate.php lib/classes/Feed/Collection.php lib/classes/Feed/CollectionInterface.php lib/classes/Feed/Entry/Adapter.php lib/classes/Feed/Entry/Collection.php lib/classes/Feed/Entry/Interface.php lib/classes/Feed/Entry/Item.php lib/classes/Feed/Entry/ItemInterface.php lib/classes/Feed/Interface.php lib/classes/Feed/Link.php lib/classes/Feed/LinkInterface.php lib/classes/Feed/Publisher/Adapter.php lib/classes/Feed/Publisher/Interface.php lib/classes/Feed/Token.php lib/classes/Feed/TokenAggregate.php lib/classes/Feed/XML/Abstract.php lib/classes/Feed/XML/Atom.php lib/classes/Feed/XML/Cooliris.php lib/classes/Feed/XML/Interface.php lib/classes/Feed/XML/RSS.php lib/classes/Feed/XML/RSS/ImageInterface.php lib/classes/http/request.php lib/classes/module/console/schedulerStart.php lib/classes/module/console/schedulerState.php lib/classes/module/console/schedulerStop.php lib/classes/module/console/taskState.php lib/classes/module/console/tasklist.php lib/classes/module/console/taskrun.php lib/classes/registry.php lib/classes/registryInterface.php lib/classes/set/order.php lib/classes/system/url.php lib/classes/task/Scheduler.php lib/classes/task/appboxAbstract.php lib/classes/task/databoxAbstract.php lib/classes/task/manager.php lib/classes/task/period/RecordMover.php lib/classes/task/period/apibridge.php lib/classes/task/period/archive.php lib/classes/task/period/cindexer.php lib/classes/task/period/emptyColl.php lib/classes/task/period/ftp.php lib/classes/task/period/ftpPull.php lib/classes/task/period/subdef.php lib/classes/task/period/test.php lib/classes/task/period/writemeta.php lib/conf.d/PhraseaFixture/AbstractWZ.php lib/conf.d/PhraseaFixture/Basket/LoadFiveBaskets.php lib/conf.d/PhraseaFixture/Basket/LoadOneBasket.php lib/conf.d/PhraseaFixture/Basket/LoadOneBasketEnv.php lib/conf.d/PhraseaFixture/Lazaret/LoadOneFile.php lib/conf.d/PhraseaFixture/Story/LoadOneStory.php lib/conf.d/PhraseaFixture/UsrLists/ListAbstract.php lib/conf.d/PhraseaFixture/UsrLists/UsrList.php lib/conf.d/PhraseaFixture/UsrLists/UsrListEntry.php lib/conf.d/PhraseaFixture/UsrLists/UsrListOwner.php lib/conf.d/PhraseaFixture/ValidationParticipant/LoadOneParticipant.php lib/conf.d/PhraseaFixture/ValidationParticipant/LoadParticipantWithSession.php lib/conf.d/PhraseaFixture/ValidationSession/LoadOneValidationSession.php
289 lines
11 KiB
PHP
289 lines
11 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2014 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
use Alchemy\Phrasea\Application;
|
|
use Symfony\Component\Translation\TranslatorInterface;
|
|
|
|
class queries
|
|
{
|
|
public static function tree_topics($I18N)
|
|
{
|
|
$out = '';
|
|
|
|
$xmlTopics = null;
|
|
$sxTopics = null;
|
|
|
|
if (file_exists(__DIR__ . '/../../config/topics/topics_' . $I18N . '.xml'))
|
|
$xmlTopics = __DIR__ . '/../../config/topics/topics_' . $I18N . '.xml';
|
|
|
|
if (! $xmlTopics) {
|
|
if (file_exists(__DIR__ . '/../../config/topics/topics.xml')) {
|
|
$xmlTopics = __DIR__ . '/../../config/topics/topics.xml';
|
|
}
|
|
}
|
|
|
|
$cssTopics = '';
|
|
if ($xmlTopics && false !== $sxTopics = simplexml_load_file($xmlTopics)) {
|
|
$cssTopics = (string) $sxTopics->display->css;
|
|
}
|
|
|
|
$out .= '<style type="text/css">
|
|
' . $cssTopics . '
|
|
</style>';
|
|
|
|
$out .='<div class="searchZone" >
|
|
<div class="linktopics1" >';
|
|
|
|
if ($sxTopics) {
|
|
$defaultview = mb_strtolower($sxTopics->display->defaultview);
|
|
if ( ! $defaultview)
|
|
$defaultview = 'static';
|
|
$out .= ( "<ul id='TOPIC_UL' class='nobox'>\n");
|
|
$out .= self::drawTopics($sxTopics->topics, 0, '', $defaultview);
|
|
$out .= ( "\n</ul>\n");
|
|
}
|
|
|
|
$out .= '</div>
|
|
</div>';
|
|
|
|
return $out;
|
|
}
|
|
|
|
public static function topics_exists($I18n)
|
|
{
|
|
if (file_exists(__DIR__ . '/../../config/topics/topics_' . $I18n . '.xml')) {
|
|
return true;
|
|
}
|
|
|
|
if (file_exists(__DIR__ . '/../../config/topics/topics.xml')) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public static function dropdown_topics(TranslatorInterface $translator, $I18n)
|
|
{
|
|
$out = '';
|
|
|
|
$xmlTopics = '';
|
|
$sxTopics = null;
|
|
|
|
if (file_exists(__DIR__ . '/../../config/topics/topics_' . $I18n . '.xml'))
|
|
$xmlTopics = __DIR__ . '/../../config/topics/topics_' . $I18n . '.xml';
|
|
|
|
if ($xmlTopics == '') {
|
|
if (file_exists(__DIR__ . '/../../config/topics/topics.xml')) {
|
|
$xmlTopics = __DIR__ . '/../../config/topics/topics.xml';
|
|
}
|
|
}
|
|
|
|
if ($xmlTopics == '') {
|
|
return '';
|
|
}
|
|
|
|
$jsTopics = 'null';
|
|
$maxdepth = 0;
|
|
if (false !== $sxTopics = simplexml_load_file($xmlTopics)) {
|
|
$jsTopics = self::topicsAsJS($sxTopics->topics, 0, $maxdepth);
|
|
}
|
|
|
|
$out .= ' <script type="text/javascript">
|
|
var maxdepth = ' . ($maxdepth + 1) . ';
|
|
var topics = ' . $jsTopics . ';
|
|
var current_popqry = "";
|
|
|
|
function doSearchTopPop(qry)
|
|
{
|
|
var qft = document.forms["pops"].qry.value;
|
|
if(qft != "" && current_popqry != "")
|
|
qry = "("+qft+") AND ("+current_popqry+")";
|
|
else
|
|
qry = qft+current_popqry;
|
|
|
|
if(qry=="")
|
|
qry = "all";
|
|
|
|
doSpecialSearch(qry,true);
|
|
|
|
return;
|
|
}
|
|
function chgPopTopic(ipop)
|
|
{
|
|
if(ipop > ' . ($maxdepth + 1) . ')
|
|
|
|
return;
|
|
var i,j;
|
|
var _topics = topics;
|
|
var zpop;
|
|
current_popqry = "";
|
|
for (i=0; _topics && i<ipop; i++) {
|
|
zpop = document.forms["pops"]["popTopic_"+i];
|
|
if((j = zpop.selectedIndex) > 0)
|
|
current_popqry = zpop.options[j].value;
|
|
j--;
|
|
if(_topics[j] && _topics[j].topics)
|
|
_topics = _topics[j].topics;
|
|
else
|
|
_topics = null;
|
|
}
|
|
if(ipop == ' . ($maxdepth + 1) . ')
|
|
|
|
return;
|
|
zpop = document.forms["pops"]["popTopic_"+ipop];
|
|
if (_topics) {
|
|
while(zpop.options[0])
|
|
zpop.options[0] = null;
|
|
zpop.options[0] = new Option("All", "");
|
|
for(j=0; j<_topics.length; j++)
|
|
zpop.options[j+1] = new Option(_topics[j].label, _topics[j].query);
|
|
zpop.selectedIndex = 0;
|
|
document.getElementById("divTopic_"+ipop).style.display = "";
|
|
} else {
|
|
document.getElementById("divTopic_"+ipop).style.display = "none";
|
|
}
|
|
while (++ipop <= ' . $maxdepth . ') {
|
|
document.getElementById("divTopic_"+ipop).style.display = "none";
|
|
}
|
|
}
|
|
</script>';
|
|
|
|
$out .= '<div class="searchZonePop" onload="chgPopTopic(0);">
|
|
<div class="linktopics1">
|
|
<form name="pops" onsubmit="return(false);" style="margin:0px; margin-left:5px; margin-right:5px">
|
|
<table>
|
|
<tr>
|
|
<td colspan="2">' . $translator->trans('boutton::chercher') . ' :
|
|
<input style="width:180px" type="text" name="qry"></td>
|
|
</tr>
|
|
</table>
|
|
' . $translator->trans('client::recherche: dans les categories') . '<br/>';
|
|
|
|
for ($i = 0; $i <= $maxdepth; $i ++) {
|
|
$out .= '<p id="divTopic_' . $i . '" style="margin:0px;margin-bottom:5px;" >
|
|
<select style="width:100%;" id="popTopic_' . $i . '" name="popTopic_' . $i . '" onchange="chgPopTopic(' . ($i + 1) . ');">
|
|
</select>
|
|
</p>';
|
|
}
|
|
$out .= '<div style="text-align:right;">
|
|
<input type="submit" value="' . $translator->trans('boutton::chercher') . '" onclick="doSearchTopPop();" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script>chgPopTopic(0);</script>';
|
|
|
|
return $out;
|
|
}
|
|
|
|
public static function history(Application $app, $usrId)
|
|
{
|
|
$history = '<ul>';
|
|
|
|
$queries = $app['EM']
|
|
->getRepository('Alchemy\Phrasea\Model\Entities\UserQuery')
|
|
->findBy(['usrId' => $usrId], ['created' => 'ASC'], 25, 0);
|
|
|
|
foreach ($queries as $query) {
|
|
$history .= '<li onclick="doSpecialSearch(\'' . str_replace(["'", '"'], ["\'", '"'], $query->getQuery()) . '\')">' . $query->getQuery() . '</li>';
|
|
}
|
|
|
|
$history .= '<ul>';
|
|
|
|
return $history;
|
|
}
|
|
|
|
private static function hastopics(&$topics)
|
|
{
|
|
foreach ($topics->topics as $subtopic) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
private static function topicsAsJS($topics, $depth, &$maxdepth)
|
|
{
|
|
if ($depth > $maxdepth)
|
|
$maxdepth = $depth;
|
|
$t = '';
|
|
$tab = str_repeat("\t", $depth);
|
|
foreach ($topics->topic as $subtopic) {
|
|
$t .= $t ? "$tab, " : "$tab ";
|
|
$t .= '{ ';
|
|
$t .= 'label:"' . p4string::MakeString(utf8_decode($subtopic->label), 'js') . '"';
|
|
if ($q = $subtopic->query) {
|
|
$q = str_replace(["\\", "'", "\r", "\n"], ["\\\\", "\\'", "\\r", "\\n"], $subtopic->query);
|
|
$t .= ", query:'" . $q . "'";
|
|
} else {
|
|
$t .= ', query:null';
|
|
}
|
|
if (self::hastopics($subtopic)) {
|
|
$t .= ', topics:' . "\n" . self::topicsAsJS($subtopic->topics, $depth + 1, $maxdepth); //, $fullquery) ;
|
|
} else {
|
|
$t .= ', topics:null';
|
|
}
|
|
$t .= " }\n";
|
|
}
|
|
|
|
return("$tab" . "[\n" . $t . "\n$tab]");
|
|
}
|
|
|
|
private static function drawTopics($topics, $depth = 0, $triid = '', $defaultview)
|
|
{
|
|
$n = 0;
|
|
$out = '';
|
|
foreach ($topics->topic as $subtopic) {
|
|
$tid = $triid . '_' . $n;
|
|
$s = $subtopic->label;
|
|
$l = p4string::MakeString($s, 'html');
|
|
$l = '<span class=\'topic_' . $depth . '\'>' . $l . '</span>';
|
|
if ($subtopic->query) {
|
|
$q = str_replace(["\\", "\"", "'", "\r", "\n"], ["\\\\", """, "\\'", "\\r", "\\n"], $subtopic->query);
|
|
$q = '<a href="javascript:void();" onClick="doSpecialSearch(\'' . $q . '\',true);">' . $l . '</a>';
|
|
} else {
|
|
$q = $l;
|
|
}
|
|
if (self::hastopics($subtopic)) {
|
|
$view = mb_strtolower($subtopic['view']);
|
|
if ( ! $view)
|
|
$view = $defaultview;
|
|
switch ($view) {
|
|
case 'opened':
|
|
$out .= ( '<li><a id=\'TOPIC_TRI' . $tid . '\' class="opened" href="javascript:void();" onclick="clktri(\'' . $tid . '\');return(false);"></a> ' . $q . '</li>' . "\n");
|
|
$out .= ( "<ul id='TOPIC_UL$tid' class='opened'>\n");
|
|
$out .= self::drawTopics($subtopic->topics, $depth + 1, $tid, $defaultview);
|
|
$out .= ( "</ul>\n<div style='height:1px;'></div>\n");
|
|
break;
|
|
case 'closed':
|
|
$out .= ( '<li><a id=\'TOPIC_TRI' . $tid . '\' class="closed" href="javascript:void();" onclick="clktri(\'' . $tid . '\');return(false);"></a> ' . $q . '</li>' . "\n");
|
|
$out .= ( "<ul id='TOPIC_UL$tid' class='closed'>\n");
|
|
$out .= self::drawTopics($subtopic->topics, $depth + 1, $tid, $defaultview);
|
|
$out .= ( "</ul>\n<div style='height:1px;'></div>\n");
|
|
break;
|
|
case 'static':
|
|
default:
|
|
$out .= ( '<li><span id=\'TOPIC_TRI' . $tid . '\' class="static"> </span> ' . $q . '</li>' . "\n");
|
|
$out .= ( "<ul id='TOPIC_UL$tid' class='static'>\n");
|
|
$out .= self::drawTopics($subtopic->topics, $depth + 1, $tid, $defaultview);
|
|
$out .= ( "</ul>\n<div style='height:1px;'></div>\n");
|
|
break;
|
|
}
|
|
} else {
|
|
$out .= ( '<li><span id=\'TOPIC_TRI' . $tid . '\' class="none"> </span> ' . $q . '</li>' . "\n");
|
|
}
|
|
$n ++;
|
|
}
|
|
|
|
return $out;
|
|
}
|
|
}
|