mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
522 lines
19 KiB
PHP
522 lines
19 KiB
PHP
<?php namespace Visiosoft\AdvsModule\Adv;
|
|
|
|
use Anomaly\FilesModule\File\Contract\FileRepositoryInterface;
|
|
use Anomaly\FilesModule\Folder\Contract\FolderRepositoryInterface;
|
|
use Anomaly\Streams\Platform\Model\Advs\AdvsAdvsEntryModel;
|
|
use Illuminate\Support\Carbon;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Intervention\Image\Facades\Image;
|
|
use Visiosoft\AdvsModule\Adv\Contract\AdvRepositoryInterface;
|
|
use Anomaly\Streams\Platform\Entry\EntryRepository;
|
|
use Visiosoft\CatsModule\Category\CategoryModel;
|
|
use Visiosoft\LocationModule\City\CityModel;
|
|
use Visiosoft\LocationModule\Country\CountryModel;
|
|
use Visiosoft\LocationModule\District\DistrictModel;
|
|
|
|
class AdvRepository extends EntryRepository implements AdvRepositoryInterface
|
|
{
|
|
protected $model;
|
|
private $fileRepository;
|
|
private $folderRepository;
|
|
|
|
public function __construct(
|
|
AdvModel $model,
|
|
FileRepositoryInterface $fileRepository,
|
|
FolderRepositoryInterface $folderRepository
|
|
)
|
|
{
|
|
$this->model = $model;
|
|
$this->fileRepository = $fileRepository;
|
|
$this->folderRepository = $folderRepository;
|
|
}
|
|
|
|
public function findById($id)
|
|
{
|
|
return $this->model->orderBy('created_at', 'DESC')->where('advs_advs.id', $id)->first();
|
|
}
|
|
|
|
public function searchAdvs(
|
|
$type, $param = null, $customParameters = [],
|
|
$limit = null, $category = null, $city = null, $paginate = true
|
|
)
|
|
{
|
|
$isActiveDopings = new AdvModel();
|
|
$isActiveDopings = $isActiveDopings->is_enabled('dopings');
|
|
|
|
$query = $this->model;
|
|
$query = $query->where('advs_advs.slug', '!=', "");
|
|
$query = $query->where('advs_advs.status', 'approved');
|
|
$query = $query->where('advs_advs.finish_at', '>', date('Y-m-d H:i:s'));
|
|
|
|
|
|
$query = $query->leftJoin('advs_advs_translations', function ($join) {
|
|
$join->on('advs_advs.id', '=', 'advs_advs_translations.entry_id');
|
|
$join->where('advs_advs_translations.locale', '=', Request()->session()->get('_locale', setting_value('streams::default_locale')));
|
|
});
|
|
|
|
if (!empty($param['keyword'])) {
|
|
if (is_numeric($param['keyword'])) {
|
|
$query = $query->where('advs_advs.id', $param['keyword']);
|
|
} else {
|
|
$delimiter = '_';
|
|
$keyword = str_slug($param['keyword'], $delimiter);
|
|
$query = $query->where(function ($query) use ($keyword) {
|
|
$query->where('advs_advs_translations.advs_desc', 'like', '%' . $keyword . '%')
|
|
->orWhere('slug', 'like', '%' . $keyword . '%')
|
|
->orWhere('advs_advs_translations.name', 'like', '%' . $keyword . '%');
|
|
});
|
|
}
|
|
}
|
|
if (!setting_value('visiosoft.module.location::hide_location_filter') and isset($param['country'])) {
|
|
$country = !empty($param['country']) ? $param['country'] : setting_value('visiosoft.module.location::default_country');
|
|
if ($country) {
|
|
$query = $query->where('country_id', $country);
|
|
}
|
|
if ($city) {
|
|
$query = $query->where('city', $city->id);
|
|
} elseif (isset($param['city']) and !empty(array_filter($param['city']))) {
|
|
$query = $query->whereIn('city', $param['city']);
|
|
}
|
|
if (isset($param['district']) and !empty(array_filter($param['district']))) {
|
|
$query = $query->whereIn('district', $param['district']);
|
|
}
|
|
if (isset($param['neighborhood']) and !empty(array_filter($param['neighborhood']))) {
|
|
$query = $query->whereIn('neighborhood', $param['neighborhood']);
|
|
}
|
|
if (isset($param['village']) and !empty(array_filter($param['village']))) {
|
|
$query = $query->whereIn('village', $param['village']);
|
|
}
|
|
}
|
|
if ($category) {
|
|
$cat = new CategoryModel();
|
|
if ($category) {
|
|
if ($category->parent_category_id == null) {
|
|
$catLevel = 1;
|
|
} else {
|
|
$catLevel = $cat->getCatLevel($category->id);
|
|
}
|
|
$catLevel = "cat" . $catLevel;
|
|
$query = $query->where($catLevel, $category->id);
|
|
}
|
|
}
|
|
if (!empty($param['user'])) {
|
|
$query = $query->where('advs_advs.created_by_id', $param['user']);
|
|
}
|
|
if (!empty($param['currency'])) {
|
|
if (!empty($param['min_price'])) {
|
|
$num = $param['min_price'];
|
|
$int = (int)$num;
|
|
$column = "JSON_EXTRACT(foreign_currencies, '$." . $param['currency'] . "') >=" . $int;
|
|
$query = $query->whereRaw($column);
|
|
}
|
|
if (!empty($param['max_price'])) {
|
|
$num = $param['max_price'];
|
|
$int = (int)$num;
|
|
$column = "JSON_EXTRACT(foreign_currencies, '$." . $param['currency'] . "') <=" . $int;
|
|
$query = $query->whereRaw($column);
|
|
}
|
|
}
|
|
if (!empty($param['date'])) {
|
|
if ($param['date'] === 'day') {
|
|
$query = $query->where('advs_advs.publish_at', '>=', Carbon::now()->subDay());
|
|
} elseif ($param['date'] === 'two_days') {
|
|
$query = $query->where('advs_advs.publish_at', '>=', Carbon::now()->subDays(2));
|
|
} elseif ($param['date'] === 'week') {
|
|
$query = $query->where('advs_advs.publish_at', '>=', Carbon::now()->subWeek());
|
|
} elseif ($param['date'] === 'month') {
|
|
$query = $query->where('advs_advs.publish_at', '>=', Carbon::now()->subMonth());
|
|
}
|
|
}
|
|
if (!empty($param['photo'])) {
|
|
$query = $query->whereNotNull('cover_photo');
|
|
}
|
|
if (!empty($param['video'])) {
|
|
$query = $query->where('cover_photo', 'like', '%video/upload/w_400,e_loop%');
|
|
}
|
|
if (!empty($param['map']) && $param['map'] == true) {
|
|
$query = $query->whereNotNull('map_Val');
|
|
}
|
|
if (!empty($param['get_ads']) && $param['get_ads'] == true) {
|
|
$query = $query->where('is_get_adv', 1);
|
|
}
|
|
|
|
foreach ($param as $para => $value) {
|
|
if (substr($para, 0, 3) === "cf_") {
|
|
$id = substr($para, 3);
|
|
$customParameters[] = ['id' => "$.cf" . $id, 'value' => $param[$para]];
|
|
}
|
|
}
|
|
|
|
if ($this->model->is_enabled('customfields')) {
|
|
$query = app('Visiosoft\CustomfieldsModule\Http\Controller\cfController')->filterSearch($customParameters, $param, $query);
|
|
}
|
|
|
|
// //UPDATE `default_advs_advs` SET `coor` = (PointFromText('POINT(41.085022 28.804754)')) WHERE `default_advs_advs`.`id` = 8
|
|
// //SELECT * FROM `default_advs_advs` WHERE ST_DISTANCE(ST_GeomFromText('POINT(41.0709052 28.829627)'), coor) < 20
|
|
|
|
if (!empty($param['dlong']) && !empty($param['dlat']) && !empty($param['distance'])) {
|
|
$query = $query->whereNotNull('coor');
|
|
$query = $query->whereRaw("ST_DISTANCE(ST_GeomFromText('POINT(" . $param['dlong'] . " " . $param['dlat'] . ")'), coor) < " . $param['distance']);
|
|
}
|
|
|
|
if ($isActiveDopings) {
|
|
$query = app('Visiosoft\DopingsModule\Http\Controller\DopingsController')->search($query, $param);
|
|
}
|
|
|
|
if (!empty($param['sort_by'])) {
|
|
switch ($param['sort_by']) {
|
|
case "popular":
|
|
$query = $query->orderBy('advs_advs.count_show_ad', 'desc');
|
|
break;
|
|
case "sort_price_up":
|
|
$query = $query->orderBy('advs_advs.price', 'desc');
|
|
break;
|
|
case "sort_price_down":
|
|
$query = $query->orderBy('advs_advs.price', 'asc');
|
|
break;
|
|
case "sort_time_newest":
|
|
$query = $query->orderBy('advs_advs.created_at', 'desc');
|
|
break;
|
|
case "sort_time_oldest":
|
|
$query = $query->orderBy('advs_advs.created_at', 'asc');
|
|
break;
|
|
case "address_a_z":
|
|
$query = $query->join('location_cities_translations', 'advs_advs.city', '=', 'location_cities_translations.entry_id')
|
|
->orderBy('location_cities_translations.name', 'ASC');
|
|
break;
|
|
case "address_z_a":
|
|
$query = $query->join('location_cities_translations', 'advs_advs.city', '=', 'location_cities_translations.entry_id')
|
|
->orderBy('location_cities_translations.name', 'DESC');
|
|
break;
|
|
}
|
|
} else {
|
|
$query = $query->orderBy('advs_advs.created_at', 'desc');
|
|
}
|
|
|
|
if ($isActiveDopings) {
|
|
$query = app('Visiosoft\DopingsModule\Http\Controller\DopingsController')->querySelect($query, $param);
|
|
} else {
|
|
$query = $query->select('advs_advs.*', 'advs_advs_translations.name as name',
|
|
'advs_advs_translations.advs_desc as advs_desc');
|
|
}
|
|
|
|
if ($type == "list") {
|
|
return $paginate ? $query->paginate(setting_value('streams::per_page')) : $query;
|
|
} else {
|
|
return $query->get();
|
|
}
|
|
}
|
|
|
|
public function softDeleteAdv($id)
|
|
{
|
|
return $this->find($id)->update(['deleted_at' => date('Y-m-d H:i:s')]);
|
|
}
|
|
|
|
public function getLocationNames($adv)
|
|
{
|
|
$country = CountryModel::query()->where('location_countries.id', $adv->country_id)->first();
|
|
$city = CityModel::query()->where('location_cities.id', $adv->city)->first();
|
|
$district = DistrictModel::query()->where('location_districts.id', $adv->district)->first();
|
|
if ($country != null) {
|
|
$adv->setAttribute('country_name', $country->name);
|
|
}
|
|
if ($city != null) {
|
|
$adv->setAttribute('city_name', $city->name);
|
|
}
|
|
if ($district != null) {
|
|
$adv->setAttribute('district_name', $district->name);
|
|
}
|
|
return $adv;
|
|
}
|
|
|
|
public function getCatNames($adv)
|
|
{
|
|
$cat1 = CategoryModel::query()->where('cats_category.id', $adv->cat1)->first();
|
|
$cat2 = CategoryModel::query()->where('cats_category.id', $adv->cat2)->first();
|
|
|
|
if (!is_null($cat1))
|
|
$adv->setAttribute('cat1_name', $cat1->name);
|
|
else
|
|
$adv->setAttribute('cat1_name', "");
|
|
|
|
if (!is_null($cat2))
|
|
$adv->setAttribute('cat2_name', $cat2->name);
|
|
|
|
else
|
|
$adv->setAttribute('cat2_name', "");
|
|
|
|
|
|
return $adv;
|
|
}
|
|
|
|
public function findByIDAndSlug($id, $slug)
|
|
{
|
|
$adv = $this->newQuery()
|
|
->where('advs_advs.id', $id)
|
|
->where('slug', $slug)
|
|
->first();
|
|
|
|
if ($adv) {
|
|
$adv = $this->getLocationNames($adv);
|
|
}
|
|
|
|
return $adv;
|
|
}
|
|
|
|
public function getListItemAdv($id)
|
|
{
|
|
$adv = $this->model
|
|
->where('advs_advs.id', $id)
|
|
->leftJoin('users_users as u1', 'advs_advs.created_by_id', '=', 'u1.id')
|
|
->select('advs_advs.*', 'u1.first_name as first_name', 'u1.last_name as last_name', 'u1.id as owner_id')
|
|
->inRandomOrder()
|
|
->first();
|
|
|
|
if ($adv) {
|
|
$adv = $this->getLocationNames($adv);
|
|
}
|
|
|
|
return $adv;
|
|
}
|
|
|
|
public function addAttributes($advs)
|
|
{
|
|
foreach ($advs as $adv) {
|
|
$adv = $this->getLocationNames($adv);
|
|
$adv = $this->getCatNames($adv);
|
|
}
|
|
|
|
return $advs;
|
|
}
|
|
|
|
public function cover_image_update($adv)
|
|
{
|
|
if (count($adv->files) != 0) {
|
|
$fileName = 'tn-' . $adv->files[0]->name;
|
|
$folder = $this->folderRepository->findBySlug('images');
|
|
$thumbnail = $this->fileRepository->findByNameAndFolder($fileName, $folder);
|
|
if (!$thumbnail) {
|
|
// Create thumbnail image
|
|
$image = Image::make(file_get_contents($adv->files[0]->url()));
|
|
$image->resize(
|
|
null,
|
|
setting_value('visiosoft.module.advs::thumbnail_height'),
|
|
function ($constraint) {
|
|
$constraint->aspectRatio();
|
|
});
|
|
if (setting_value('visiosoft.module.advs::add_canvas')) {
|
|
$image->resizeCanvas(
|
|
setting_value('visiosoft.module.advs::thumbnail_width'),
|
|
setting_value('visiosoft.module.advs::thumbnail_height'),
|
|
'center', false, 'fff'
|
|
);
|
|
}
|
|
$fileName = 'tn-' . $adv->files[0]->name;
|
|
$image->save(app_storage_path() . '/files-module/local/images/' . $fileName);
|
|
|
|
// Create file entry for the image
|
|
$this->fileRepository->create([
|
|
'folder_id' => $folder->getId(),
|
|
'name' => $fileName,
|
|
'disk_id' => 1,
|
|
'size' => $image->filesize(),
|
|
'mime_type' => $image->mime,
|
|
'extension' => $image->extension,
|
|
]);
|
|
|
|
$coverPhoto = 'files/images/' . $fileName;
|
|
} else {
|
|
$coverPhoto = $thumbnail->url();
|
|
}
|
|
} else {
|
|
$coverPhoto = null;
|
|
}
|
|
$adv->update(['cover_photo' => $coverPhoto]);
|
|
}
|
|
|
|
public function getRecommendedAds($id)
|
|
{
|
|
return AdvModel::query()
|
|
->where('advs_advs.id', '!=', $id)
|
|
->where('advs_advs.status', 'approved')
|
|
->select('advs_advs.*')
|
|
->orderBy('id', 'desc')
|
|
->take(4)
|
|
->get();
|
|
}
|
|
|
|
public function getLastAd($id)
|
|
{
|
|
return AdvsAdvsEntryModel::query()->where('advs_advs.created_by_id', '=', $id)->max('id');
|
|
}
|
|
|
|
public function getAdvArray($id)
|
|
{
|
|
$ad = AdvsAdvsEntryModel::query()->where('advs_advs.id', $id)->first();
|
|
|
|
return ($ad !== null) ? $ad->toArray() : null;
|
|
}
|
|
|
|
public function getQuantity($quantity, $type, $item)
|
|
{
|
|
if ($type == "minus") {
|
|
return $quantity - 1;
|
|
} elseif ($type == "plus") {
|
|
return $quantity + 1;
|
|
} else {
|
|
return $quantity;
|
|
}
|
|
}
|
|
|
|
public function findByIds($ids)
|
|
{
|
|
return $this->model->orderBy('created_at', 'DESC')->whereIn('advs_advs.id', $ids)->get();
|
|
}
|
|
|
|
|
|
/**
|
|
* Get Latest Ads
|
|
* @return mixed
|
|
*/
|
|
public function latestAds()
|
|
{
|
|
$latest_advs = $this->model
|
|
->whereDate('finish_at', '>=', date("Y-m-d H:i:s"))
|
|
->where('status', '=', 'approved')
|
|
->where('slug', '!=', '')
|
|
->orderBy('publish_at', 'desc')
|
|
->limit(setting_value('visiosoft.module.advs::latest-limit'))->get();
|
|
|
|
$ads = $this->model->getLocationNames($latest_advs);
|
|
|
|
foreach ($ads as $index => $ad) {
|
|
$ads[$index]->detail_url = $this->model->getAdvDetailLinkByModel($ad, 'list');
|
|
$ads[$index] = $this->model->AddAdsDefaultCoverImage($ad);
|
|
}
|
|
|
|
return $ads;
|
|
}
|
|
|
|
public function getByCat($catID, $level = 1, $limit = 20)
|
|
{
|
|
$advs = $this->model
|
|
->whereDate('finish_at', '>=', date("Y-m-d H:i:s"))
|
|
->where('status', 'approved')
|
|
->where('slug', '!=', '')
|
|
->where('cat' . $level, $catID);
|
|
|
|
if ($limit) {
|
|
$advs = $advs->limit($limit);
|
|
}
|
|
|
|
$advs = $advs->get();
|
|
|
|
$ads = $this->model->getLocationNames($advs);
|
|
|
|
foreach ($ads as $index => $ad) {
|
|
$ads[$index]->detail_url = $this->model->getAdvDetailLinkByModel($ad, 'list');
|
|
$ads[$index] = $this->model->AddAdsDefaultCoverImage($ad);
|
|
}
|
|
|
|
return $ads;
|
|
}
|
|
|
|
public function countByCat($catID, $level = 1)
|
|
{
|
|
return DB::table('advs_advs')
|
|
->whereDate('finish_at', '>=', date("Y-m-d H:i:s"))
|
|
->where('status', 'approved')
|
|
->whereNull('deleted_at')
|
|
->where('slug', '!=', '')
|
|
->where('cat' . $level, $catID)
|
|
->count();
|
|
}
|
|
|
|
public function getCategoriesWithAdID($id)
|
|
{
|
|
$adv = $this->model->find($id);
|
|
|
|
if (!is_null($adv)) {
|
|
$categories = array();
|
|
foreach ($adv->toArray() as $key => $field) {
|
|
if (preg_match('/cat\d/', $key) and !is_null($field)) {
|
|
$categories[$key] = $field;
|
|
}
|
|
}
|
|
return $categories;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public function extendAds($allAds, $isAdmin = false)
|
|
{
|
|
if (is_array($allAds)) {
|
|
$advs = $this->newQuery()->whereIn('id', $allAds);
|
|
} elseif (!is_numeric($allAds)) {
|
|
if ($isAdmin && auth()->user()->hasRole('admin')) {
|
|
$advs = $this->newQuery();
|
|
} else {
|
|
$advs = $this->newQuery()->where('created_by_id', auth()->id());
|
|
}
|
|
} else {
|
|
$advs = $this->newQuery()->where('id', $allAds);
|
|
}
|
|
$newDate = date('Y-m-d H:i:s', strtotime(date('Y-m-d H:i:s') . ' + ' . setting_value('visiosoft.module.advs::default_published_time') . ' day'));
|
|
return $advs->update(['finish_at' => $newDate]);
|
|
}
|
|
|
|
public function getByUsersIDs($usersIDs, $status = 'approved', $withDraft = false)
|
|
{
|
|
$ads = $this
|
|
->newQuery()
|
|
->whereIn('advs_advs.created_by_id', $usersIDs)
|
|
->where('advs_advs.finish_at', '>', date('Y-m-d H:i:s'));
|
|
|
|
if ($status) {
|
|
$ads = $ads->where('advs_advs.status', 'approved');
|
|
}
|
|
|
|
if (!$withDraft) {
|
|
$ads = $ads->where('advs_advs.slug', '!=', "");
|
|
}
|
|
|
|
return $ads;
|
|
}
|
|
|
|
public function getPopular()
|
|
{
|
|
return $this->newQuery()
|
|
->whereDate('finish_at', '>=', date("Y-m-d H:i:s"))
|
|
->where('status', '=', 'approved')
|
|
->where('slug', '!=', '')
|
|
->orderBy('count_show_ad', 'desc')
|
|
->paginate(setting_value('visiosoft.module.advs::popular_ads_limit', setting_value('streams::per_page')));
|
|
}
|
|
|
|
public function getName($id){
|
|
return $this->find($id)->name;
|
|
}
|
|
|
|
public function approveAds($adsIDs)
|
|
{
|
|
$defaultAdPublishTime = setting_value('visiosoft.module.advs::default_published_time');
|
|
$ads = $this->newQuery()->whereIn('advs_advs.id', $adsIDs)->update([
|
|
'status' => 'approved',
|
|
'finish_at' => date('Y-m-d H:i:s', strtotime(date('Y-m-d H:i:s') . ' + ' . $defaultAdPublishTime . ' day')),
|
|
'publish_at' => date('Y-m-d H:i:s')
|
|
]);
|
|
|
|
return $ads;
|
|
}
|
|
|
|
public function getUserAds($userID = null)
|
|
{
|
|
$userID = auth_id_if_null($userID);
|
|
return $this->newQuery()
|
|
->where('advs_advs.created_by_id', $userID)
|
|
->where('status', 'approved')
|
|
->where('finish_at', '>', date('Y-m-d H:i:s'))
|
|
->get();
|
|
}
|
|
}
|