Esempio n. 1
0
 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     $statuses = ['validate', 'pending', 'expired', 'banned', 'trashed'];
     foreach ($statuses as $status) {
         Adstatus::create(['title' => $status]);
     }
 }
Esempio n. 2
0
 /**
  * Remove the specified resource from storage.
  *
  * @param Ad $ad
  *
  * @return Response
  */
 protected function destroy(Ad $ad, $forceDelete)
 {
     $adstatus = Adstatus::whereTitle('trashed')->first();
     $ad->adstatus()->associate($adstatus);
     $ad->save();
     event(new AdWillBeDeleted($ad, $this->admin, $forceDelete));
     if ($forceDelete) {
         $ad->forceDelete();
     } else {
         $ad->delete();
     }
     event(new AdWasDeleted($ad, $this->admin, $forceDelete));
 }
Esempio n. 3
0
 /**
  * Remove the specified resource from storage.
  *
  * @param Ad $ad
  *
  * @return Response
  */
 public function destroy(Ad $ad)
 {
     $adstatus = Adstatus::whereTitle('trashed')->first();
     $ad->adstatus()->associate($adstatus);
     $ad->save();
     event(new AdWillBeDeleted($ad, $this->user));
     $ad->delete();
     event(new AdWasDeleted($ad, $this->user));
 }
Esempio n. 4
0
 protected function getExpiredAds()
 {
     $status = Adstatus::whereTitle('validate')->firstOrFail();
     $ads = $status->ads()->whereNotNull('expired_at')->where('expired_at', '<', Carbon::now()->toDateTimeString())->get();
     return $ads;
 }
Esempio n. 5
0
 /**
  * Define your route model bindings, pattern filters, etc.
  *
  * @param  \Illuminate\Routing\Router  $router
  *
  * @return void
  */
 public function boot(Router $router)
 {
     $router->bind('adWithTrashed', function ($id) {
         return Ad::with('content')->withTrashed()->findOrFail($id);
     });
     $router->bind('ad', function ($id) {
         return Ad::with('content')->findOrFail($id);
     });
     $router->bind('adCollection', function ($ids) {
         $ids = explode(',', $ids);
         return Ad::with('content')->withTrashed()->findMany($ids);
     });
     $router->bind('adstatus', function ($title) {
         return Adstatus::whereTitle($title)->firstOrFail();
     });
     $router->bind('adValidated', function ($id) {
         return Ad::with('content')->validate()->findOrFail($id);
     });
     $router->bind('adPreview', function ($id) {
         if (Auth::guard('admin')->check()) {
             return Ad::with('content')->withTrashed()->findOrFail($id);
         }
         if (Auth::guard('user')->check()) {
             return Auth::user()->ads()->with('content')->findOrFail($id);
         }
         abort(404);
     });
     $router->bind('adtypeNotCustomized', function ($id) {
         return Adtype::whereIsCustomized(0)->findOrFail($id);
     });
     $router->bind('adtypeCollection', function ($ids) {
         $ids = explode(',', $ids);
         return Adtype::findMany($ids);
     });
     $router->bind('templateCollection', function ($ids) {
         $ids = explode(',', $ids);
         return Template::findMany($ids);
     });
     $router->bind('encryptedOrderId', function ($enc) {
         $orderId = Crypt::decrypt($enc);
         return Order::findOrFail($orderId);
     });
     $router->bind('fieldCollection', function ($ids) {
         $ids = explode(',', $ids);
         return Field::findMany($ids);
     });
     $router->bind('subscriptionCollection', function ($ids) {
         $ids = explode(',', $ids);
         return Subscription::findMany($ids);
     });
     $router->bind('userCollection', function ($ids) {
         $ids = explode(',', $ids);
         return User::findMany($ids);
     });
     $router->bind('adUser', function ($id) {
         if (Auth::check()) {
             return Auth::user()->ads()->with('content')->findOrFail($id);
         } else {
             abort(404);
         }
     });
     $router->bind('field', function ($id) {
         return Field::with('search')->findOrFail($id);
     });
     $router->bind('visibleCategory', function ($id) {
         return Category::visible()->findOrFail($id);
     });
     $router->bind('templateblock', function ($identifier) use($router) {
         $page = $router->input('page');
         return Templateblock::whereIdentifier($identifier)->whereTemplateId($page->template->id)->firstOrFail();
     });
     $router->bind('widgetnode', function ($id) use($router) {
         $pageId = $router->input('page')->id;
         $templateblockId = $router->input('templateblock')->id;
         return Widgetnode::whereTemplateblockId($templateblockId)->wherePageId($pageId)->findOrFail($id);
     });
     $router->model('adtype', 'ZEDx\\Models\\Adtype');
     $router->model('template', 'ZEDx\\Models\\Template');
     $router->model('category', 'ZEDx\\Models\\Category');
     $router->model('country', 'ZEDx\\Models\\Country');
     $router->model('page', 'ZEDx\\Models\\Page');
     $router->model('menu', 'ZEDx\\Models\\Menu');
     $router->model('gateway', 'ZEDx\\Models\\Gateway');
     $router->model('themepartial', 'ZEDx\\Models\\Themepartial');
     $router->model('dashboardWidget', 'ZEDx\\Models\\Dashboardwidget');
     $router->model('searchfield', 'ZEDx\\Models\\SearchField');
     $router->model('selectfield', 'ZEDx\\Models\\SelectField');
     $router->model('subscription', 'ZEDx\\Models\\Subscription');
     $router->model('user', 'ZEDx\\Models\\User');
     parent::boot($router);
 }
Esempio n. 6
0
 protected function validateAd($ad)
 {
     $adstatus = Adstatus::whereTitle('validate')->first();
     $ad->adstatus()->associate($adstatus->id);
     event(new AdWasValidated($ad, 'ZEDx'));
 }