mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
79 lines
2.1 KiB
PHP
79 lines
2.1 KiB
PHP
<?php namespace Visiosoft\AdvsModule\Adv;
|
|
|
|
use Anomaly\FilesModule\File\Contract\FileRepositoryInterface;
|
|
use Anomaly\Streams\Platform\Entry\EntryPresenter;
|
|
use Anomaly\Streams\Platform\Model\Cloudinary\CloudinaryVideoEntryModel;
|
|
|
|
class AdvPresenter extends EntryPresenter
|
|
{
|
|
|
|
private $fileRepository;
|
|
|
|
public function __construct($object, FileRepositoryInterface $fileRepository)
|
|
{
|
|
parent::__construct($object);
|
|
$this->fileRepository = $fileRepository;
|
|
}
|
|
|
|
public function getViewPhotoUrl()
|
|
{
|
|
$item_Photo = array();
|
|
foreach ($this->files as $image) {
|
|
$item_Photo[] = url('files/' . $image->path);
|
|
}
|
|
return $item_Photo;
|
|
|
|
}
|
|
|
|
public function getMediumPhotoUrl($fullPhotoUrl)
|
|
{
|
|
$mediumPhotoUrl = pathinfo($fullPhotoUrl);
|
|
$mediumPhotoName = 'md-' . $mediumPhotoUrl['basename'];
|
|
if ($this->fileRepository->findBy('name', $mediumPhotoName)) {
|
|
return $mediumPhotoUrl['dirname'] . '/' . $mediumPhotoName;
|
|
} else {
|
|
return $fullPhotoUrl;
|
|
}
|
|
}
|
|
|
|
public function isAdVideo()
|
|
{
|
|
$isActive = new AdvModel();
|
|
$isActiveCloudinary = $isActive->is_enabled('cloudinary');
|
|
if ($isActiveCloudinary) {
|
|
$cloudinaryModel = new CloudinaryVideoEntryModel();
|
|
$adVideo = $cloudinaryModel::query()->where('adv', $this->getObject()->id)->first();
|
|
if ($adVideo != null) {
|
|
return $adVideo->url;
|
|
} else {
|
|
return null;
|
|
}
|
|
|
|
}
|
|
return null;
|
|
|
|
}
|
|
|
|
public function getAdvsList($attributes)
|
|
{
|
|
return \route('visiosoft.module.advs::list', $attributes);
|
|
}
|
|
|
|
public function isCorporate()
|
|
{
|
|
$user_id = $this->getObject()->created_by;
|
|
if ($user_id->register_type != null) {
|
|
return $user_id->register_type;
|
|
} else {
|
|
return 1;
|
|
}
|
|
|
|
}
|
|
|
|
public function priceFormat($adv)
|
|
{
|
|
$advModel = new AdvModel();
|
|
return $advModel->priceFormat($adv->getObject());
|
|
}
|
|
}
|