mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 14:03:27 +00:00

Conflicts: lib/Alchemy/Phrasea/Controller/Prod/Push.php lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php lib/conf.d/migrations.yml Conflicts: lib/Alchemy/Phrasea/ACL/BasketACL.php lib/Alchemy/Phrasea/Authentication/Authenticator.php lib/Alchemy/Phrasea/Controller/Prod/Order.php lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php lib/Alchemy/Phrasea/Controller/Root/RSSFeeds.php lib/Alchemy/Phrasea/Controller/Root/Session.php lib/Alchemy/Phrasea/Model/Entities/Basket.php lib/Alchemy/Phrasea/Model/Entities/BasketElement.php lib/Alchemy/Phrasea/Model/Entities/Feed.php lib/Alchemy/Phrasea/Model/Entities/FeedEntry.php lib/Alchemy/Phrasea/Model/Entities/FtpExport.php lib/Alchemy/Phrasea/Model/Entities/Session.php lib/Alchemy/Phrasea/Model/Entities/StoryWZ.php lib/Alchemy/Phrasea/Model/Entities/UsrList.php lib/Alchemy/Phrasea/Model/Entities/UsrListEntry.php lib/Alchemy/Phrasea/Model/Entities/UsrListOwner.php lib/Alchemy/Phrasea/Model/Entities/ValidationParticipant.php lib/Alchemy/Phrasea/Model/Entities/ValidationSession.php lib/Alchemy/Phrasea/Model/Repositories/StoryWZRepository.php lib/classes/API/V1/adapter.php templates/mobile/lightbox/sc_note.html.twig templates/web/admin/connected-users.html.twig templates/web/admin/publications/fiche.html.twig templates/web/lightbox/IE6/agreement_box.html.twig templates/web/lightbox/agreement_box.html.twig templates/web/lightbox/basket_content_report.html.twig templates/web/lightbox/sc_note.html.twig templates/web/prod/WorkZone/Browser/Basket.html.twig templates/web/prod/WorkZone/Browser/Results.html.twig templates/web/prod/WorkZone/Macros.html.twig templates/web/prod/actions/Feedback/List-Share.html.twig templates/web/prod/actions/Feedback/ListsMacros.html.twig templates/web/prod/orders/order_box.html.twig templates/web/prod/orders/order_item.html.twig templates/web/prod/upload/lazaret.html.twig tests/Alchemy/Tests/Phrasea/Controller/Root/SessionTest.php
170 lines
4.7 KiB
PHP
170 lines
4.7 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.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Model\Repositories;
|
|
|
|
use Alchemy\Phrasea\Application;
|
|
use Alchemy\Phrasea\Model\Entities\User;
|
|
use Doctrine\ORM\EntityRepository;
|
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
|
|
/**
|
|
* StoryWZRepository
|
|
*
|
|
* This class was generated by the Doctrine ORM. Add your own custom
|
|
* repository methods below.
|
|
*/
|
|
class StoryWZRepository extends EntityRepository
|
|
{
|
|
|
|
public function findByUser(Application $app, User $user, $sort)
|
|
{
|
|
$dql = 'SELECT s FROM Phraseanet:StoryWZ s WHERE s.usr_id = :usr_id ';
|
|
|
|
if ($sort == 'date') {
|
|
$dql .= ' ORDER BY s.created DESC';
|
|
}
|
|
|
|
$query = $this->_em->createQuery($dql);
|
|
$query->setParameters(['usr_id' => $user->getId()]);
|
|
|
|
$stories = $query->getResult();
|
|
|
|
foreach ($stories as $key => $story) {
|
|
try {
|
|
$story->getRecord($app)->get_title();
|
|
} catch (NotFoundHttpException $e) {
|
|
$this->getEntityManager()->remove($story);
|
|
unset($stories[$key]);
|
|
}
|
|
}
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
if ($sort == 'name') {
|
|
$sortedStories = [];
|
|
foreach ($stories as $story) {
|
|
$sortedStories[] = $story->getRecord($app)->get_title();
|
|
}
|
|
|
|
uasort($sortedStories, function ($a, $b) {
|
|
if ($a == $b) {
|
|
return 0;
|
|
}
|
|
|
|
return ($a < $b) ? -1 : 1;
|
|
});
|
|
|
|
foreach ($sortedStories as $idStory => $titleStory) {
|
|
$sortedStories[$idStory] = $stories[$idStory];
|
|
}
|
|
}
|
|
|
|
return $stories;
|
|
}
|
|
|
|
public function findByUserAndId(Application $app, User $user, $id)
|
|
{
|
|
$story = $this->find($id);
|
|
|
|
if ($story) {
|
|
try {
|
|
$story->getRecord($app)->get_title();
|
|
} catch (NotFoundHttpException $e) {
|
|
$this->getEntityManager()->remove($story);
|
|
throw new NotFoundHttpException('Story not found');
|
|
}
|
|
|
|
if ($story->getUser()->getId() !== $user->getId()) {
|
|
throw new AccessDeniedHttpException('You have not access to ths story');
|
|
}
|
|
} else {
|
|
throw new NotFoundHttpException('Story not found');
|
|
}
|
|
|
|
return $story;
|
|
}
|
|
|
|
public function findUserStory(Application $app, User $user, \record_adapter $Story)
|
|
{
|
|
$story = $this->findOneBy(
|
|
[
|
|
'usr_id' => $user->getId(),
|
|
'sbas_id' => $Story->get_sbas_id(),
|
|
'record_id' => $Story->get_record_id(),
|
|
]
|
|
);
|
|
|
|
if ($story) {
|
|
try {
|
|
$story->getRecord($app);
|
|
} catch (NotFoundHttpException $e) {
|
|
$this->getEntityManager()->remove($story);
|
|
$this->getEntityManager()->flush();
|
|
$story = null;
|
|
}
|
|
}
|
|
|
|
return $story;
|
|
}
|
|
|
|
public function findByRecord(Application $app, \record_adapter $Story)
|
|
{
|
|
$dql = 'SELECT s FROM Phraseanet:StoryWZ s WHERE s.sbas_id = :sbas_id
|
|
AND s.record_id = :record_id';
|
|
|
|
$query = $this->_em->createQuery($dql);
|
|
$query->setParameters([
|
|
'sbas_id' => $Story->get_sbas_id(),
|
|
'record_id' => $Story->get_record_id(),
|
|
]);
|
|
|
|
$stories = $query->getResult();
|
|
|
|
foreach ($stories as $key => $story) {
|
|
try {
|
|
$story->getRecord($app);
|
|
} catch (NotFoundHttpException $e) {
|
|
$this->getEntityManager()->remove($story);
|
|
$this->getEntityManager()->flush();
|
|
unset($stories[$key]);
|
|
}
|
|
}
|
|
|
|
return $stories;
|
|
}
|
|
|
|
public function findByDatabox(Application $app, \databox $databox)
|
|
{
|
|
$dql = 'SELECT s FROM Phraseanet:StoryWZ s WHERE s.sbas_id = :sbas_id';
|
|
|
|
$query = $this->_em->createQuery($dql);
|
|
$query->setParameters([
|
|
'sbas_id' => $databox->get_sbas_id(),
|
|
]);
|
|
|
|
$stories = $query->getResult();
|
|
|
|
foreach ($stories as $key => $story) {
|
|
try {
|
|
$story->getRecord($app);
|
|
} catch (NotFoundHttpException $e) {
|
|
$this->getEntityManager()->remove($story);
|
|
$this->getEntityManager()->flush();
|
|
unset($stories[$key]);
|
|
}
|
|
}
|
|
|
|
return $stories;
|
|
}
|
|
}
|