Your IP : 216.73.216.84


Current Path : /home/h/e/l/helpink/www/components/com_jbusinessdirectory/models/
Upload File :
Current File : /home/h/e/l/helpink/www/components/com_jbusinessdirectory/models/useroptions.php

<?php
/**
 * @package    J-BusinessDirectory
 *
 * @author     CMSJunkie http://www.cmsjunkie.com/
 * @copyright  Copyright (C) 2007 - 2022 CMSJunkie. All rights reserved.
 * @license    https://www.gnu.org/licenses/agpl-3.0.en.html
 */
defined('_JEXEC') or die('Restricted access');

JTable::addIncludePath(DS.'components'.'com_jbusinessdirectory'.DS.'tables');


class JBusinessDirectoryModelUserOptions extends JModelLegacy {
	public function __construct() {
		parent::__construct();
	}

	/**
	 * Returns a Table object, always creating it
	 *
	 * @param   type	The table type to instantiate
	 * @param   string	A prefix for the table class name. Optional.
	 * @param   array  Configuration array for model. Optional.
	 * @return  JTable	A database object
	 */
	public function getTable($type = 'Companies', $prefix = 'JTable', $config = array()) {
		return JTable::getInstance($type, $prefix, $config);
	}
	
	public function getStatistics() {
		$statistics = new stdClass();
	
		$user = JBusinessUtil::getUser();
		
		$companyTable = JTable::getInstance('Company', 'JTable');
		$statistics->totalListings = $companyTable->getTotalListings($user->id);
		$statistics->listingsTotalViews = $companyTable->getListingsViewsOnFront($user->id);
	
		$offersTable = JTable::getInstance('Offer', 'JTable');
		$statistics->totalOffers = $offersTable->getTotalNumberOfOffers($user->id);
		$statistics->offersTotalViews = $offersTable->getOfferViewsOnFront($user->id);
	
		$eventsTable = JTable::getInstance('Event', 'JTable');
		$statistics->totalEvents = $eventsTable->getTotalNumberOfEvents($user->id);
		$statistics->eventsTotalViews = $eventsTable->getEventViewsOnFront($user->id);
	
		$statistics->totalViews = $statistics->listingsTotalViews + $statistics->offersTotalViews + $statistics->eventsTotalViews;
	
		return $statistics;
	}

	public function getNewCompanies() {
		$user = JBusinessUtil::getUser();
		$start_date = JFactory::getApplication()->input->get('start_date');
		$start_date = date("Y-m-d", strtotime($start_date));
		$end_date = JFactory::getApplication()->input->get('end_date');
		$end_date = date("Y-m-d", strtotime($end_date));

		$companyTable = JTable::getInstance('Company', 'JTable');
		$result = $companyTable->getNewCompanyViews($start_date, $end_date, $user->id);

		//add start date element if it does not exists
		if (!empty($result)) {
			if ($result[0]->date != $start_date) {
				$item = new stdClass();
				$item->date = $start_date;
				$item->value = 0;
				array_unshift($result, $item);
			}

			//add end date element if it does not exists
			if (end($result)->date != $end_date) {
				$item = new stdClass();
				$item->date = $end_date;
				$item->value = 0;
				array_push($result, $item);
			}
		} else {
			$firstItem = new stdClass();
			$firstItem->date = $start_date;
			$firstItem->value = 0;
			array_unshift($result, $firstItem);

			$endItem = new stdClass();
			$endItem->date = $end_date;
			$endItem->value = 0;
			array_push($result, $endItem);
		}

		return $result;
	}

	public function getNewOffers() {
		$user = JBusinessUtil::getUser();
		$start_date = JFactory::getApplication()->input->get('start_date');
		$start_date = date("Y-m-d", strtotime($start_date));
		$end_date = JFactory::getApplication()->input->get('end_date');
		$end_date = date("Y-m-d", strtotime($end_date));

		$offerTable = JTable::getInstance('Offer', 'JTable');
		$result = $offerTable->getNewOffersViews($start_date, $end_date, $user->id);

		//add start date element if it does not exists
		if (!empty($result)) {
			if ($result[0]->date != $start_date) {
				$item = new stdClass();
				$item->date = $start_date;
				$item->value = 0;
				array_unshift($result, $item);
			}

			//add end date element if it does not exists
			if (end($result)->date != $end_date) {
				$item = new stdClass();
				$item->date = $end_date;
				$item->value = 0;
				array_push($result, $item);
			}
		} else {
			$firstItem = new stdClass();
			$firstItem->date = $start_date;
			$firstItem->value = 0;
			array_unshift($result, $firstItem);

			$endItem = new stdClass();
			$endItem->date = $end_date;
			$endItem->value = 0;
			array_push($result, $endItem);
		}

		return $result;
	}

	public function getNewEvents() {
		$user = JBusinessUtil::getUser();
		$start_date = JFactory::getApplication()->input->get('start_date');
		$start_date = date("Y-m-d", strtotime($start_date));
		$end_date = JFactory::getApplication()->input->get('end_date');
		$end_date = date("Y-m-d", strtotime($end_date));

		$eventTable = JTable::getInstance('Event', 'JTable');
		$result = $eventTable->getNewEventsViews($start_date, $end_date, $user->id);

		//add start date element if it does not exists

		if (!empty($result)) {
			if ($result[0]->date != $start_date) {
				$item = new stdClass();
				$item->date = $start_date;
				$item->value = 0;
				array_unshift($result, $item);
			}

			//add end date element if it does not exists
			if (end($result)->date != $end_date) {
				$item = new stdClass();
				$item->date = $end_date;
				$item->value = 0;
				array_push($result, $item);
			}
		} else {
			$firstItem = new stdClass();
			$firstItem->date = $start_date;
			$firstItem->value = 0;
			array_unshift($result, $firstItem);

			$endItem = new stdClass();
			$endItem->date = $end_date;
			$endItem->value = 0;
			array_push($result, $endItem);
		}

		return $result;
	}

	/**
	 * Get the last unpaid order
	 *
	 * @return void
	 */
	public function getLastUnpaidOrder(){
		$user = JBusinessUtil::getUser();

		$orderTable = JTable::getInstance("Order", "JTable", array());
		$order = $orderTable->getUserLastUnpaidOrder($user->id);
		
		return $order;
	}

	/**
	 * Check if there are some messages to be displayed
	 *
	 * @return void
	 */
	public function getDisplayMessage(){
		$message = null;

		//check if the email address is verified
		$user = JBusinessUtil::getUser();
		// if(!empty($user->id)){
		// 	$userProfileTable = JTable::getInstance("UserProfile", "JTable");
		// 	$userProfile = $userProfileTable->getUserProfile($user->id);
		// 	if(empty($userProfile->verified)){
		// 		$message = new stdClass;
		// 		$message->title = JText::_("LNG_EMAIL_VERIFICATION_TITLE");
		// 		$message->text = JText::_("LNG_EMAIL_VERIFICATION_TEXT");
		// 		$message->button_text = JText::_("LNG_RESEND_VERIFICATION");
		// 		$message->button_link = JRoute::_('index.php?option=com_jbusinessdirectory&task=businessuser.resendVerficationEmail');
		// 		return $message;
		// 	}
		// }

		//check if the last order is paid
		$lastUnpaidOrder = $this->getLastUnpaidOrder();
		if(!empty($lastUnpaidOrder)){
			$message = new stdClass;
			$message->title = JText::_("LNG_UNPAID_ORDER_TITLE");
			$message->text = JText::_("LNG_UNPAID_ORDER_TEXT");
			$message->button_text = "<i class=\"la la-money-bill-alt\"></i> ".JText::_("LNG_PAY");;
			$menuItemId = JBusinessUtil::getActiveMenuItem();
			$message->button_link = JRoute::_('index.php?option=com_jbusinessdirectory&task=billingdetails.checkBillingDetails'.'&orderId='.$lastUnpaidOrder->id.'&companyId='.$lastUnpaidOrder->company_id.$menuItemId);
			return $message;
		}

		return null;
	}
}