Your IP : 216.73.216.84


Current Path : /home/helpink/www/components/com_jbusinessdirectory/models/
Upload File :
Current File : /home/helpink/www/components/com_jbusinessdirectory/models/managecompanyprojects.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'.DS.'com_jbusinessdirectory'.DS.'tables');
require_once(JPATH_COMPONENT_ADMINISTRATOR . DS . 'models' . DS . 'projects.php');

class JBusinessDirectoryModelManageCompanyProjects extends JBusinessDirectoryModelProjects {
	/**
	 * JBusinessDirectoryModelManageCompanyServices constructor.
	 */
	public function __construct() {
		parent::__construct();
		$this->appSettings = JBusinessUtil::getApplicationSettings();
		$this->_total = 0;
	}

	/**
	 * 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 = 'Projects', $prefix = 'JTable', $config = array()) {
		return JTable::getInstance($type, $prefix, $config);
	}

	/**
	 * Method to build an SQL query to load the list data.
	 *
	 * @return  string  An SQL query
	 *
	 * @since   1.6
	 */
	protected function getListQuery() {
		// Create a new query object.
		$db = $this->getDbo();
		$query = $db->getQuery(true);
		$companyIds = JBusinessUtil::getCompaniesByUserId();
		$userId = JBusinessUtil::getUser()->id;

		$ids = array();
		foreach ($companyIds as $company) {
			$ids[] = $company->id;
		}

		$ids = implode(",", $ids);

		// Select all fields from the table.
		$query->select($this->getState('list.select', 'pr.*'));
		$query->from($db->quoteName('#__jbusinessdirectory_company_projects') . ' AS pr');

		// Join over company table
		$query->select('cp.name as companyName');
		$query->join('LEFT', $db->quoteName('#__jbusinessdirectory_companies') . ' AS cp on cp.id = pr.company_id');

		// Join over the offer pictures
		$query->select('cpp.picture_path, cpp.picture_enable');
		$query->join('LEFT', $db->quoteName('#__jbusinessdirectory_company_projects_pictures').' AS cpp ON cpp.projectId=pr.id
				and
						(cpp.id in (
							select  min(pp1.id) as min from #__jbusinessdirectory_company_projects pr1
							left join  #__jbusinessdirectory_company_projects_pictures pp1 on pr1.id=pp1.projectId
							where pp1.picture_enable=1
							group by pr1.id
						)
					)
				
				');

		// Filter by selected company
		$companyId = $this->getState('filter.company_id');
		if (!empty($companyId)) {
			$query->where("pr.company_id = " . $companyId);
		}

		if (empty($ids)) {
			$ids = -1;
		}
		$query->where("pr.company_id in (" . $ids . ") or pr.user_id = $userId");

		$query->group('pr.id');

		// Add the list ordering clause.
		$query->order($db->escape($this->getState('list.ordering', 'pr.id')) . ' ' . $db->escape($this->getState('list.direction', 'ASC')));

		return $query;
	}

	/**
	 * Check if project creating is allowed
	 *
	 * @return boolean
	 */
	public function getCreateProjectPermission() {
		$packagesTable = $this->getTable("Package");

		$user = JBusinessUtil::getUser();
		$companiesTable = $this->getTable("Company");
		$companies = $companiesTable->getCompaniesByUserId($user->id);


		if (!$this->appSettings->enable_packages) {
			return true;
		} else {
			if (!empty($companies)) {
				foreach ($companies as $company) {
					$package = $packagesTable->getCurrentActivePackage($company->id);

					if (empty($package)) {
						continue;
					}

					if (!empty($package->features)) {
						$package->features = $package->features;
					} else {
						$package->features = array();
					}

					if (!empty($package->features) && in_array(PROJECTS, $package->features)) {
						return true;
					}
				}
			}
		}

		return false;
	}

}