mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-03-10 04:21:06 +00:00
add poster event support #18
This commit is contained in:
parent
bd5191e894
commit
706ea40eec
@ -1329,6 +1329,219 @@ class ActivityController extends AbstractController
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
/// Torrent Poster
|
||||||
|
case $activity::EVENT_TORRENT_POSTER_ADD:
|
||||||
|
|
||||||
|
// Init torrent
|
||||||
|
if (!$torrent = $torrentService->getTorrent($activity->getTorrentId()))
|
||||||
|
{
|
||||||
|
throw $this->createNotFoundException();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->render(
|
||||||
|
'default/activity/event/torrent/poster/add' . $extension,
|
||||||
|
[
|
||||||
|
'id' => $activity->getId(),
|
||||||
|
'added' => $activity->getAdded(),
|
||||||
|
'user' =>
|
||||||
|
[
|
||||||
|
'id' => $activity->getUserId(),
|
||||||
|
'identicon' => $userService->identicon(
|
||||||
|
$userService->getUser(
|
||||||
|
$activity->getUserId()
|
||||||
|
)->getAddress()
|
||||||
|
)
|
||||||
|
],
|
||||||
|
'torrent' =>
|
||||||
|
[
|
||||||
|
'id' => $torrent->getId(),
|
||||||
|
'sensitive' => $torrent->isSensitive(),
|
||||||
|
'approved' => $torrent->isApproved(),
|
||||||
|
'status' => $torrent->isStatus(),
|
||||||
|
'name' => $torrentService->readTorrentFileByTorrentId(
|
||||||
|
$torrent->getId()
|
||||||
|
)->getName(),
|
||||||
|
'poster' => [
|
||||||
|
'id' => $activity->getData()['torrentPosterId'],
|
||||||
|
'exist' => $torrentService->getTorrentPoster(
|
||||||
|
$activity->getData()['torrentPosterId'] // could be deleted by moderator, remove links
|
||||||
|
)
|
||||||
|
]
|
||||||
|
],
|
||||||
|
'session' =>
|
||||||
|
[
|
||||||
|
'user' =>
|
||||||
|
[
|
||||||
|
'id' => $user->getId(),
|
||||||
|
'sensitive' => $user->isSensitive(),
|
||||||
|
'moderator' => $user->isModerator(),
|
||||||
|
'owner' => $user->getId() === $torrent->getUserId(),
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case $activity::EVENT_TORRENT_POSTER_DELETE:
|
||||||
|
|
||||||
|
// Init torrent
|
||||||
|
if (!$torrent = $torrentService->getTorrent($activity->getTorrentId()))
|
||||||
|
{
|
||||||
|
throw $this->createNotFoundException();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->render(
|
||||||
|
'default/activity/event/torrent/poster/delete' . $extension,
|
||||||
|
[
|
||||||
|
'id' => $activity->getId(),
|
||||||
|
'added' => $activity->getAdded(),
|
||||||
|
'user' =>
|
||||||
|
[
|
||||||
|
'id' => $activity->getUserId(),
|
||||||
|
'identicon' => $userService->identicon(
|
||||||
|
$userService->getUser(
|
||||||
|
$activity->getUserId()
|
||||||
|
)->getAddress()
|
||||||
|
)
|
||||||
|
],
|
||||||
|
'torrent' =>
|
||||||
|
[
|
||||||
|
'id' => $torrent->getId(),
|
||||||
|
'sensitive' => $torrent->isSensitive(),
|
||||||
|
'approved' => $torrent->isApproved(),
|
||||||
|
'status' => $torrent->isStatus(),
|
||||||
|
'name' => $torrentService->readTorrentFileByTorrentId(
|
||||||
|
$torrent->getId()
|
||||||
|
)->getName(),
|
||||||
|
'poster' => [
|
||||||
|
'id' => $activity->getData()['torrentPosterId'],
|
||||||
|
'exist' => $torrentService->getTorrentPoster(
|
||||||
|
$activity->getData()['torrentPosterId'] // could be deleted by moderator, remove links
|
||||||
|
)
|
||||||
|
]
|
||||||
|
],
|
||||||
|
'session' =>
|
||||||
|
[
|
||||||
|
'user' =>
|
||||||
|
[
|
||||||
|
'id' => $user->getId(),
|
||||||
|
'sensitive' => $user->isSensitive(),
|
||||||
|
'moderator' => $user->isModerator(),
|
||||||
|
'owner' => $user->getId() === $torrent->getUserId(),
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case $activity::EVENT_TORRENT_POSTER_APPROVE_ADD:
|
||||||
|
|
||||||
|
// Init torrent
|
||||||
|
if (!$torrent = $torrentService->getTorrent($activity->getTorrentId()))
|
||||||
|
{
|
||||||
|
throw $this->createNotFoundException();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->render(
|
||||||
|
'default/activity/event/torrent/poster/approve/add' . $extension,
|
||||||
|
[
|
||||||
|
'id' => $activity->getId(),
|
||||||
|
'added' => $activity->getAdded(),
|
||||||
|
'user' =>
|
||||||
|
[
|
||||||
|
'id' => $activity->getUserId(),
|
||||||
|
'identicon' => $userService->identicon(
|
||||||
|
$userService->getUser(
|
||||||
|
$activity->getUserId()
|
||||||
|
)->getAddress()
|
||||||
|
)
|
||||||
|
],
|
||||||
|
'torrent' =>
|
||||||
|
[
|
||||||
|
'id' => $torrent->getId(),
|
||||||
|
'sensitive' => $torrent->isSensitive(),
|
||||||
|
'approved' => $torrent->isApproved(),
|
||||||
|
'status' => $torrent->isStatus(),
|
||||||
|
'name' => $torrentService->readTorrentFileByTorrentId(
|
||||||
|
$torrent->getId()
|
||||||
|
)->getName(),
|
||||||
|
'poster' => [
|
||||||
|
'id' => $activity->getData()['torrentPosterId'],
|
||||||
|
'exist' => $torrentService->getTorrentPoster(
|
||||||
|
$activity->getData()['torrentPosterId'] // could be deleted by moderator, remove links
|
||||||
|
)
|
||||||
|
]
|
||||||
|
],
|
||||||
|
'session' =>
|
||||||
|
[
|
||||||
|
'user' =>
|
||||||
|
[
|
||||||
|
'id' => $user->getId(),
|
||||||
|
'sensitive' => $user->isSensitive(),
|
||||||
|
'moderator' => $user->isModerator(),
|
||||||
|
'owner' => $user->getId() === $torrent->getUserId(),
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case $activity::EVENT_TORRENT_POSTER_APPROVE_DELETE:
|
||||||
|
|
||||||
|
// Init torrent
|
||||||
|
if (!$torrent = $torrentService->getTorrent($activity->getTorrentId()))
|
||||||
|
{
|
||||||
|
throw $this->createNotFoundException();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->render(
|
||||||
|
'default/activity/event/torrent/poster/approve/delete' . $extension,
|
||||||
|
[
|
||||||
|
'id' => $activity->getId(),
|
||||||
|
'added' => $activity->getAdded(),
|
||||||
|
'user' =>
|
||||||
|
[
|
||||||
|
'id' => $activity->getUserId(),
|
||||||
|
'identicon' => $userService->identicon(
|
||||||
|
$userService->getUser(
|
||||||
|
$activity->getUserId()
|
||||||
|
)->getAddress()
|
||||||
|
)
|
||||||
|
],
|
||||||
|
'torrent' =>
|
||||||
|
[
|
||||||
|
'id' => $torrent->getId(),
|
||||||
|
'sensitive' => $torrent->isSensitive(),
|
||||||
|
'approved' => $torrent->isApproved(),
|
||||||
|
'status' => $torrent->isStatus(),
|
||||||
|
'name' => $torrentService->readTorrentFileByTorrentId(
|
||||||
|
$torrent->getId()
|
||||||
|
)->getName(),
|
||||||
|
'poster' => [
|
||||||
|
'id' => $activity->getData()['torrentPosterId'],
|
||||||
|
'exist' => $torrentService->getTorrentPoster(
|
||||||
|
$activity->getData()['torrentPosterId'] // could be deleted by moderator, remove links
|
||||||
|
)
|
||||||
|
]
|
||||||
|
],
|
||||||
|
'session' =>
|
||||||
|
[
|
||||||
|
'user' =>
|
||||||
|
[
|
||||||
|
'id' => $user->getId(),
|
||||||
|
'sensitive' => $user->isSensitive(),
|
||||||
|
'moderator' => $user->isModerator(),
|
||||||
|
'owner' => $user->getId() === $torrent->getUserId(),
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
/// Torrent star
|
/// Torrent star
|
||||||
case $activity::EVENT_TORRENT_STAR_ADD:
|
case $activity::EVENT_TORRENT_STAR_ADD:
|
||||||
|
|
||||||
|
@ -1979,14 +1979,12 @@ class TorrentController extends AbstractController
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Add activity event
|
// Add activity event
|
||||||
/* @TODO
|
|
||||||
$activityService->addEventTorrentPosterAdd(
|
$activityService->addEventTorrentPosterAdd(
|
||||||
$user->getId(),
|
$user->getId(),
|
||||||
$torrent->getId(),
|
$torrent->getId(),
|
||||||
time(),
|
time(),
|
||||||
$torrentPoster->getId()
|
$torrentPoster->getId()
|
||||||
);
|
);
|
||||||
*/
|
|
||||||
|
|
||||||
// Redirect to info page created
|
// Redirect to info page created
|
||||||
return $this->redirectToRoute(
|
return $this->redirectToRoute(
|
||||||
@ -2068,26 +2066,22 @@ class TorrentController extends AbstractController
|
|||||||
// Add activity event
|
// Add activity event
|
||||||
if (!$torrentPoster->isApproved())
|
if (!$torrentPoster->isApproved())
|
||||||
{
|
{
|
||||||
/* @TODO
|
|
||||||
$activityService->addEventTorrentPosterApproveAdd(
|
$activityService->addEventTorrentPosterApproveAdd(
|
||||||
$user->getId(),
|
$user->getId(),
|
||||||
$torrent->getId(),
|
$torrent->getId(),
|
||||||
time(),
|
time(),
|
||||||
$torrentPoster->getId()
|
$torrentPoster->getId()
|
||||||
);
|
);
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* @TODO
|
|
||||||
$activityService->addEventTorrentPosterApproveDelete(
|
$activityService->addEventTorrentPosterApproveDelete(
|
||||||
$user->getId(),
|
$user->getId(),
|
||||||
$torrent->getId(),
|
$torrent->getId(),
|
||||||
time(),
|
time(),
|
||||||
$torrentPoster->getId()
|
$torrentPoster->getId()
|
||||||
);
|
);
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update approved
|
// Update approved
|
||||||
@ -2157,14 +2151,12 @@ class TorrentController extends AbstractController
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Add activity event
|
// Add activity event
|
||||||
/* @TODO
|
|
||||||
$activityService->addEventTorrentPosterDelete(
|
$activityService->addEventTorrentPosterDelete(
|
||||||
$user->getId(),
|
$user->getId(),
|
||||||
$torrent->getId(),
|
$torrent->getId(),
|
||||||
time(),
|
time(),
|
||||||
$torrentPoster->getId()
|
$torrentPoster->getId()
|
||||||
);
|
);
|
||||||
*/
|
|
||||||
|
|
||||||
// Update approved
|
// Update approved
|
||||||
$torrentService->deleteTorrentPoster(
|
$torrentService->deleteTorrentPoster(
|
||||||
@ -2182,12 +2174,6 @@ class TorrentController extends AbstractController
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Torrent star
|
// Torrent star
|
||||||
#[Route(
|
#[Route(
|
||||||
'/{_locale}/torrent/{torrentId}/star/toggle',
|
'/{_locale}/torrent/{torrentId}/star/toggle',
|
||||||
|
@ -62,6 +62,11 @@ class Activity
|
|||||||
public const EVENT_TORRENT_STATUS_ADD = 1800;
|
public const EVENT_TORRENT_STATUS_ADD = 1800;
|
||||||
public const EVENT_TORRENT_STATUS_DELETE = 1801;
|
public const EVENT_TORRENT_STATUS_DELETE = 1801;
|
||||||
|
|
||||||
|
public const EVENT_TORRENT_POSTER_ADD = 2800;
|
||||||
|
public const EVENT_TORRENT_POSTER_DELETE = 2801;
|
||||||
|
public const EVENT_TORRENT_POSTER_APPROVE_ADD = 2810;
|
||||||
|
public const EVENT_TORRENT_POSTER_APPROVE_DELETE = 2811;
|
||||||
|
|
||||||
// ...
|
// ...
|
||||||
|
|
||||||
#[ORM\Column]
|
#[ORM\Column]
|
||||||
|
@ -56,6 +56,11 @@ class ActivityService
|
|||||||
Activity::EVENT_TORRENT_SENSITIVE_APPROVE_ADD,
|
Activity::EVENT_TORRENT_SENSITIVE_APPROVE_ADD,
|
||||||
Activity::EVENT_TORRENT_SENSITIVE_APPROVE_DELETE,
|
Activity::EVENT_TORRENT_SENSITIVE_APPROVE_DELETE,
|
||||||
|
|
||||||
|
Activity::EVENT_TORRENT_POSTER_ADD,
|
||||||
|
Activity::EVENT_TORRENT_POSTER_DELETE,
|
||||||
|
Activity::EVENT_TORRENT_POSTER_APPROVE_ADD,
|
||||||
|
Activity::EVENT_TORRENT_POSTER_APPROVE_DELETE,
|
||||||
|
|
||||||
Activity::EVENT_TORRENT_STAR_ADD,
|
Activity::EVENT_TORRENT_STAR_ADD,
|
||||||
Activity::EVENT_TORRENT_STAR_DELETE,
|
Activity::EVENT_TORRENT_STAR_DELETE,
|
||||||
|
|
||||||
@ -321,6 +326,55 @@ class ActivityService
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
/// Torrent poster
|
||||||
|
case Activity::EVENT_TORRENT_POSTER_ADD:
|
||||||
|
|
||||||
|
$events
|
||||||
|
[
|
||||||
|
$this->translatorInterface->trans('Torrent poster')
|
||||||
|
]
|
||||||
|
[
|
||||||
|
$this->translatorInterface->trans('Added')
|
||||||
|
] = $code;
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case Activity::EVENT_TORRENT_POSTER_DELETE:
|
||||||
|
|
||||||
|
$events
|
||||||
|
[
|
||||||
|
$this->translatorInterface->trans('Torrent poster')
|
||||||
|
]
|
||||||
|
[
|
||||||
|
$this->translatorInterface->trans('Deleted')
|
||||||
|
] = $code;
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case Activity::EVENT_TORRENT_POSTER_APPROVE_ADD:
|
||||||
|
|
||||||
|
$events
|
||||||
|
[
|
||||||
|
$this->translatorInterface->trans('Torrent poster')
|
||||||
|
]
|
||||||
|
[
|
||||||
|
$this->translatorInterface->trans('Approved')
|
||||||
|
] = $code;
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case Activity::EVENT_TORRENT_POSTER_APPROVE_DELETE:
|
||||||
|
|
||||||
|
$events
|
||||||
|
[
|
||||||
|
$this->translatorInterface->trans('Torrent poster')
|
||||||
|
]
|
||||||
|
[
|
||||||
|
$this->translatorInterface->trans('Disapproved')
|
||||||
|
] = $code;
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
/// Torrent stars
|
/// Torrent stars
|
||||||
case Activity::EVENT_TORRENT_STAR_ADD:
|
case Activity::EVENT_TORRENT_STAR_ADD:
|
||||||
|
|
||||||
@ -1397,4 +1451,153 @@ class ActivityService
|
|||||||
|
|
||||||
return $activity;
|
return $activity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Torrent poster
|
||||||
|
public function addEventTorrentPosterAdd(
|
||||||
|
int $userId,
|
||||||
|
int $torrentId,
|
||||||
|
int $added,
|
||||||
|
int $torrentPosterId,
|
||||||
|
): ?Activity
|
||||||
|
{
|
||||||
|
$activity = new Activity();
|
||||||
|
|
||||||
|
$activity->setEvent(
|
||||||
|
Activity::EVENT_TORRENT_POSTER_ADD
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setUserId(
|
||||||
|
$userId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setTorrentId(
|
||||||
|
$torrentId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setAdded(
|
||||||
|
$added
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setData(
|
||||||
|
[
|
||||||
|
'torrentPosterId' => $torrentPosterId
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->entityManagerInterface->persist($activity);
|
||||||
|
$this->entityManagerInterface->flush();
|
||||||
|
|
||||||
|
return $activity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function addEventTorrentPosterDelete(
|
||||||
|
int $userId,
|
||||||
|
int $torrentId,
|
||||||
|
int $added,
|
||||||
|
int $torrentPosterId,
|
||||||
|
): ?Activity
|
||||||
|
{
|
||||||
|
$activity = new Activity();
|
||||||
|
|
||||||
|
$activity->setEvent(
|
||||||
|
Activity::EVENT_TORRENT_POSTER_DELETE
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setUserId(
|
||||||
|
$userId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setTorrentId(
|
||||||
|
$torrentId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setAdded(
|
||||||
|
$added
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setData(
|
||||||
|
[
|
||||||
|
'torrentPosterId' => $torrentPosterId
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->entityManagerInterface->persist($activity);
|
||||||
|
$this->entityManagerInterface->flush();
|
||||||
|
|
||||||
|
return $activity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function addEventTorrentPosterApproveAdd(
|
||||||
|
int $userId,
|
||||||
|
int $torrentId,
|
||||||
|
int $added,
|
||||||
|
int $torrentPosterId,
|
||||||
|
): ?Activity
|
||||||
|
{
|
||||||
|
$activity = new Activity();
|
||||||
|
|
||||||
|
$activity->setEvent(
|
||||||
|
Activity::EVENT_TORRENT_POSTER_APPROVE_ADD
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setUserId(
|
||||||
|
$userId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setTorrentId(
|
||||||
|
$torrentId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setAdded(
|
||||||
|
$added
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setData(
|
||||||
|
[
|
||||||
|
'torrentPosterId' => $torrentPosterId
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->entityManagerInterface->persist($activity);
|
||||||
|
$this->entityManagerInterface->flush();
|
||||||
|
|
||||||
|
return $activity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function addEventTorrentPosterApproveDelete(
|
||||||
|
int $userId,
|
||||||
|
int $torrentId,
|
||||||
|
int $added,
|
||||||
|
int $torrentPosterId,
|
||||||
|
): ?Activity
|
||||||
|
{
|
||||||
|
$activity = new Activity();
|
||||||
|
|
||||||
|
$activity->setEvent(
|
||||||
|
Activity::EVENT_TORRENT_POSTER_APPROVE_DELETE
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setUserId(
|
||||||
|
$userId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setTorrentId(
|
||||||
|
$torrentId
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setAdded(
|
||||||
|
$added
|
||||||
|
);
|
||||||
|
|
||||||
|
$activity->setData(
|
||||||
|
[
|
||||||
|
'torrentPosterId' => $torrentPosterId
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->entityManagerInterface->persist($activity);
|
||||||
|
$this->entityManagerInterface->flush();
|
||||||
|
|
||||||
|
return $activity;
|
||||||
|
}
|
||||||
}
|
}
|
@ -0,0 +1,39 @@
|
|||||||
|
<div class="row">
|
||||||
|
<div class="column width-80">
|
||||||
|
<a class="margin-r-4-px" href="{{ path('user_info', { userId : user.id }) }}">
|
||||||
|
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
|
||||||
|
</a>
|
||||||
|
{{ 'have added poster edition' | trans }}
|
||||||
|
{% if torrent.poster.exist %}
|
||||||
|
<a href="{{ path('torrent_poster_edit', { torrentId : torrent.id, torrentPosterId : torrent.poster.id }) }}">
|
||||||
|
#{{ torrent.poster.id }}
|
||||||
|
</a>
|
||||||
|
{% else %}
|
||||||
|
#{{ torrent.poster.id }}
|
||||||
|
{% endif %}
|
||||||
|
{{ 'for torrent' | trans }}
|
||||||
|
{% if session.user.moderator or session.user.owner %}
|
||||||
|
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
|
||||||
|
{{ torrent.name }}
|
||||||
|
</a>
|
||||||
|
{% if torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% endif %}
|
||||||
|
{% else %}
|
||||||
|
{% if torrent.status == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'disabled' | trans }})
|
||||||
|
{% elseif torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% elseif torrent.sensitive == true and session.user.sensitive == true %}
|
||||||
|
#{{ torrent.id }}
|
||||||
|
{% else %}
|
||||||
|
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
|
||||||
|
{{ torrent.name }}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="column width-20 text-right">
|
||||||
|
{{ added | format_ago }}
|
||||||
|
</div>
|
||||||
|
</div>
|
26
templates/default/activity/event/torrent/poster/add.rss.twig
Normal file
26
templates/default/activity/event/torrent/poster/add.rss.twig
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<item>
|
||||||
|
<title>
|
||||||
|
{{ 'User' | trans }}
|
||||||
|
#{{ user.id }}
|
||||||
|
{{ 'have added poster edition' | trans }}
|
||||||
|
#{{ torrent.poster.id }}
|
||||||
|
{{ 'for torrent' | trans }}
|
||||||
|
{% if session.user.moderator or session.user.owner %}
|
||||||
|
{{ torrent.name }}
|
||||||
|
{% else %}
|
||||||
|
{% if torrent.status == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'disabled' | trans }})
|
||||||
|
{% elseif torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% elseif torrent.sensitive == true and session.user.sensitive == true %}
|
||||||
|
#{{ torrent.id }}
|
||||||
|
{% else %}
|
||||||
|
{{ torrent.name }}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
</title>
|
||||||
|
<author>#{{ user.id }}</author>
|
||||||
|
<pubDate>{{ added | date('D, d M Y h:i:s O') }}</pubDate>
|
||||||
|
<guid>{{ url('torrent_poster_edit', { torrentId : torrent.id, torrentPosterId : torrent.poster.id }) }}#activity-{{ id }}</guid>
|
||||||
|
<link>{{ url('torrent_poster_edit', { torrentId : torrent.id, torrentPosterId : torrent.poster.id }) }}#activity</link>
|
||||||
|
</item>
|
@ -0,0 +1,39 @@
|
|||||||
|
<div class="row">
|
||||||
|
<div class="column width-80">
|
||||||
|
<a class="margin-r-4-px" href="{{ path('user_info', { userId : user.id }) }}">
|
||||||
|
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
|
||||||
|
</a>
|
||||||
|
{{ 'have approved poster edition' | trans }}
|
||||||
|
{% if torrent.poster.exist %}
|
||||||
|
<a href="{{ path('torrent_poster_edit', { torrentId : torrent.id, torrentPosterId : torrent.poster.id }) }}">
|
||||||
|
#{{ torrent.poster.id }}
|
||||||
|
</a>
|
||||||
|
{% else %}
|
||||||
|
#{{ torrent.poster.id }}
|
||||||
|
{% endif %}
|
||||||
|
{{ 'for torrent' | trans }}
|
||||||
|
{% if session.user.moderator or session.user.owner %}
|
||||||
|
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
|
||||||
|
{{ torrent.name }}
|
||||||
|
</a>
|
||||||
|
{% if torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% endif %}
|
||||||
|
{% else %}
|
||||||
|
{% if torrent.status == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'disabled' | trans }})
|
||||||
|
{% elseif torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% elseif torrent.sensitive == true and session.user.sensitive == true %}
|
||||||
|
#{{ torrent.id }}
|
||||||
|
{% else %}
|
||||||
|
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
|
||||||
|
{{ torrent.name }}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="column width-20 text-right">
|
||||||
|
{{ added | format_ago }}
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,26 @@
|
|||||||
|
<item>
|
||||||
|
<title>
|
||||||
|
{{ 'User' | trans }}
|
||||||
|
#{{ user.id }}
|
||||||
|
{{ 'have approved poster edition' | trans }}
|
||||||
|
#{{ torrent.poster.id }}
|
||||||
|
{{ 'for torrent' | trans }}
|
||||||
|
{% if session.user.moderator or session.user.owner %}
|
||||||
|
{{ torrent.name }}
|
||||||
|
{% else %}
|
||||||
|
{% if torrent.status == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'disabled' | trans }})
|
||||||
|
{% elseif torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% elseif torrent.sensitive == true and session.user.sensitive == true %}
|
||||||
|
#{{ torrent.id }}
|
||||||
|
{% else %}
|
||||||
|
{{ torrent.name }}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
</title>
|
||||||
|
<author>#{{ user.id }}</author>
|
||||||
|
<pubDate>{{ added | date('D, d M Y h:i:s O') }}</pubDate>
|
||||||
|
<guid>{{ url('torrent_poster_edit', { torrentId : torrent.id, torrentPosterId : torrent.poster.id }) }}#activity-{{ id }}</guid>
|
||||||
|
<link>{{ url('torrent_poster_edit', { torrentId : torrent.id, torrentPosterId : torrent.poster.id }) }}#activity</link>
|
||||||
|
</item>
|
@ -0,0 +1,39 @@
|
|||||||
|
<div class="row">
|
||||||
|
<div class="column width-80">
|
||||||
|
<a class="margin-r-4-px" href="{{ path('user_info', { userId : user.id }) }}">
|
||||||
|
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
|
||||||
|
</a>
|
||||||
|
{{ 'have disapproved poster edition' | trans }}
|
||||||
|
{% if torrent.poster.exist %}
|
||||||
|
<a href="{{ path('torrent_poster_edit', { torrentId : torrent.id, torrentPosterId : torrent.poster.id }) }}">
|
||||||
|
#{{ torrent.poster.id }}
|
||||||
|
</a>
|
||||||
|
{% else %}
|
||||||
|
#{{ torrent.poster.id }}
|
||||||
|
{% endif %}
|
||||||
|
{{ 'for torrent' | trans }}
|
||||||
|
{% if session.user.moderator or session.user.owner %}
|
||||||
|
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
|
||||||
|
{{ torrent.name }}
|
||||||
|
</a>
|
||||||
|
{% if torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% endif %}
|
||||||
|
{% else %}
|
||||||
|
{% if torrent.status == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'disabled' | trans }})
|
||||||
|
{% elseif torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% elseif torrent.sensitive == true and session.user.sensitive == true %}
|
||||||
|
#{{ torrent.id }}
|
||||||
|
{% else %}
|
||||||
|
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
|
||||||
|
{{ torrent.name }}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="column width-20 text-right">
|
||||||
|
{{ added | format_ago }}
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,26 @@
|
|||||||
|
<item>
|
||||||
|
<title>
|
||||||
|
{{ 'User' | trans }}
|
||||||
|
#{{ user.id }}
|
||||||
|
{{ 'have disapproved poster edition' | trans }}
|
||||||
|
#{{ torrent.poster.id }}
|
||||||
|
{{ 'for torrent' | trans }}
|
||||||
|
{% if session.user.moderator or session.user.owner %}
|
||||||
|
{{ torrent.name }}
|
||||||
|
{% else %}
|
||||||
|
{% if torrent.status == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'disabled' | trans }})
|
||||||
|
{% elseif torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% elseif torrent.sensitive == true and session.user.sensitive == true %}
|
||||||
|
#{{ torrent.id }}
|
||||||
|
{% else %}
|
||||||
|
{{ torrent.name }}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
</title>
|
||||||
|
<author>#{{ user.id }}</author>
|
||||||
|
<pubDate>{{ added | date('D, d M Y h:i:s O') }}</pubDate>
|
||||||
|
<guid>{{ url('torrent_poster_edit', { torrentId : torrent.id, torrentPosterId : torrent.poster.id }) }}#activity-{{ id }}</guid>
|
||||||
|
<link>{{ url('torrent_poster_edit', { torrentId : torrent.id, torrentPosterId : torrent.poster.id }) }}#activity</link>
|
||||||
|
</item>
|
@ -0,0 +1,39 @@
|
|||||||
|
<div class="row">
|
||||||
|
<div class="column width-80">
|
||||||
|
<a class="margin-r-4-px" href="{{ path('user_info', { userId : user.id }) }}">
|
||||||
|
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
|
||||||
|
</a>
|
||||||
|
{{ 'have deleted poster edition' | trans }}
|
||||||
|
{% if torrent.poster.exist %}
|
||||||
|
<a href="{{ path('torrent_poster_edit', { torrentId : torrent.id, torrentPosterId : torrent.poster.id }) }}">
|
||||||
|
#{{ torrent.poster.id }}
|
||||||
|
</a>
|
||||||
|
{% else %}
|
||||||
|
#{{ torrent.sensitive.id }}
|
||||||
|
{% endif %}
|
||||||
|
{{ 'for torrent' | trans }}
|
||||||
|
{% if session.user.moderator or session.user.owner %}
|
||||||
|
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
|
||||||
|
{{ torrent.name }}
|
||||||
|
</a>
|
||||||
|
{% if torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% endif %}
|
||||||
|
{% else %}
|
||||||
|
{% if torrent.status == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'disabled' | trans }})
|
||||||
|
{% elseif torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% elseif torrent.sensitive == true and session.user.sensitive == true %}
|
||||||
|
#{{ torrent.id }}
|
||||||
|
{% else %}
|
||||||
|
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
|
||||||
|
{{ torrent.name }}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="column width-20 text-right">
|
||||||
|
{{ added | format_ago }}
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,26 @@
|
|||||||
|
<item>
|
||||||
|
<title>
|
||||||
|
{{ 'User' | trans }}
|
||||||
|
#{{ user.id }}
|
||||||
|
{{ 'have deleted poster edition' | trans }}
|
||||||
|
#{{ torrent.poster.id }}
|
||||||
|
{{ 'for torrent' | trans }}
|
||||||
|
{% if session.user.moderator or session.user.owner %}
|
||||||
|
{{ torrent.name }}
|
||||||
|
{% else %}
|
||||||
|
{% if torrent.status == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'disabled' | trans }})
|
||||||
|
{% elseif torrent.approved == false %}
|
||||||
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
||||||
|
{% elseif torrent.sensitive == true and session.user.sensitive == true %}
|
||||||
|
#{{ torrent.id }}
|
||||||
|
{% else %}
|
||||||
|
{{ torrent.name }}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
</title>
|
||||||
|
<author>#{{ user.id }}</author>
|
||||||
|
<pubDate>{{ added | date('D, d M Y h:i:s O') }}</pubDate>
|
||||||
|
<guid>{{ url('torrent_poster_edit', { torrentId : torrent.id }) }}#activity-{{ id }}</guid>
|
||||||
|
<link>{{ url('torrent_poster_edit', { torrentId : torrent.id }) }}#activity</link>
|
||||||
|
</item>
|
Loading…
x
Reference in New Issue
Block a user