2014-03-29 21:39:56 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
App::uses('AppController', 'Controller');
|
|
|
|
|
|
|
|
class SearchController extends AppController {
|
|
|
|
|
2014-05-11 13:36:55 +02:00
|
|
|
/**
|
|
|
|
* This controller use User Model
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $uses = array('DreamjobWorker', 'DreamjobJobOpening', 'DreamjobCompany','DreamjobISearch',
|
|
|
|
'DreamjobListBranch', 'DreamjobListCity', 'DreamjobListJob', 'DreamjobListKindofjob', 'DreamjobListGraducation');
|
|
|
|
public $components = array('MiconwareSession');
|
|
|
|
private static $TYPE_id = array('education' => 5, 'academy' => 6, 'internship' => 4);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays a view
|
|
|
|
*
|
|
|
|
* @param mixed What page to display
|
|
|
|
* @return void
|
|
|
|
* @throws NotFoundException When the view file could not be found
|
|
|
|
* or MissingViewException in debug mode.
|
|
|
|
*/
|
|
|
|
public function beforeFilter() {
|
|
|
|
$this->Security->unlockedActions[] = "opening";
|
|
|
|
$this->Security->unlockedActions[] = "company";
|
|
|
|
$this->Security->unlockedActions[] = "worker";
|
|
|
|
$this->Security->unlockedActions[] = "auto";
|
|
|
|
$this->Security->unlockedActions[] = "education";
|
|
|
|
$this->Security->unlockedActions[] = "academy";
|
|
|
|
$this->Security->unlockedActions[] = "internship";
|
|
|
|
parent::beforeFilter();
|
|
|
|
$this->set('MENU_SEARCH', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function choose() {
|
|
|
|
$this->MiconwareSession->init($this);
|
|
|
|
|
|
|
|
$profil = $this->MiconwareSession->getCompany();
|
|
|
|
if (!empty($profil) and count($profil) > 0) {
|
|
|
|
$this->worker();
|
|
|
|
} else {
|
|
|
|
$this->opening();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function spezial($type) {
|
|
|
|
$this->MiconwareSession->init($this);
|
|
|
|
$this->MiconwareSession->initWeb($this);
|
|
|
|
$profil = $this->MiconwareSession->getWorker();
|
|
|
|
if (!empty($profil) and count($profil) > 0 and isset(self::$TYPE_id[$type])) {
|
|
|
|
$con = $this->MiconwareSession->getOpeningCondition();
|
|
|
|
$con['DreamjobJobOpening.kindofjob_id'] = self::$TYPE_id[$type];
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobJobOpening']['branch_id']))
|
|
|
|
$con['DreamjobJobOpening.branch_id'] = $this->request->data['DreamjobJobOpening']['branch_id'];
|
|
|
|
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobJobOpening']['title']))
|
|
|
|
$con['DreamjobJobOpening.title LIKE'] = '%' . $this->request->data['DreamjobJobOpening']['title'] . '%';
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobUser']['city']) and $this->request->data['DreamjobUser']['city'] != 48) {
|
|
|
|
$con['DreamjobUser.city_id'] = $this->request->data['DreamjobUser']['city'];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$openings = $this->DreamjobJobOpening->find('all', array('conditions' => $con));
|
|
|
|
$this->set("branches", $this->DreamjobListBranch->find('list'));
|
|
|
|
$this->set("cities", $this->DreamjobListCity->find('list'));
|
|
|
|
$this->set("openings", $openings);
|
|
|
|
$this->render('/Search/' . $type);
|
|
|
|
} else {
|
2014-06-10 18:37:45 +02:00
|
|
|
$this->set('error', array('title'=>__('dreamjob.error.noPermision.title'),'text'=>__('dreamjob.error.noPermision.text')));
|
2014-10-04 15:44:21 +02:00
|
|
|
if(!$this->MiconwareSession->isLoggedin())
|
|
|
|
$this->render('/Home/login');
|
|
|
|
else
|
|
|
|
$this->render('/Home/error');
|
2014-05-11 13:36:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function opening() {
|
|
|
|
$this->MiconwareSession->init($this);
|
|
|
|
|
|
|
|
$this->MiconwareSession->initWeb($this);
|
|
|
|
$con = $this->MiconwareSession->getOpeningCondition();
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobJobOpening']['branch_id']))
|
|
|
|
$con['DreamjobJobOpening.graducation_id'] = $this->request->data['DreamjobJobOpening']['branch_id'];
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobJobOpening']['graducation_id']))
|
|
|
|
$con['DreamjobJobOpening.graducation_id'] = $this->request->data['DreamjobJobOpening']['graducation_id'];
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobJobOpening']['kindofjob_id']))
|
|
|
|
$con['DreamjobJobOpening.kindofjob_id'] = $this->request->data['DreamjobJobOpening']['kindofjob_id'];
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobJobOpening']['city']) and $this->request->data['DreamjobJobOpening']['city'] != 48) {
|
|
|
|
$con['DreamjobJobOpening.city_id'] = $this->request->data['DreamjobJobOpening']['city'];
|
|
|
|
}
|
|
|
|
if (!empty($this->request->data['DreamjobJobOpening']['postcode']))
|
|
|
|
$con['DreamjobJobOpening.postcode LIKE'] = '%' . $this->request->data['DreamjobJobOpening']['postcode'] . '%';
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobJobOpening']['title']))
|
|
|
|
$con['DreamjobJobOpening.title LIKE'] = '%' . $this->request->data['DreamjobJobOpening']['title'] . '%';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$openings = $this->DreamjobJobOpening->find('all', array('conditions' => $con));
|
|
|
|
$this->set("branches", $this->DreamjobListBranch->find('list'));
|
|
|
|
$this->set("cities", $this->DreamjobListCity->find('list'));
|
|
|
|
$this->set("graducations", $this->DreamjobListGraducation->find('list'));
|
|
|
|
$this->set("kindofjobs", $this->DreamjobListKindofjob->find('list'));
|
|
|
|
|
|
|
|
$this->set("openings", $openings);
|
|
|
|
$this->render('/Search/opening');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function company() {
|
|
|
|
$this->MiconwareSession->init($this);
|
|
|
|
|
|
|
|
$this->MiconwareSession->initWeb($this);
|
|
|
|
|
|
|
|
$con = array();
|
|
|
|
if (!empty($this->request->data['DreamjobCompany']['branch_id']))
|
|
|
|
$con['DreamjobCompany.branch_id'] = $this->request->data['DreamjobCompany']['branch_id'];
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobUser']['city']) and $this->request->data['DreamjobUser']['city'] != 48) {
|
|
|
|
$con['DreamjobUser.city_id'] = $this->request->data['DreamjobUser']['city'];
|
|
|
|
}
|
|
|
|
if (!empty($this->request->data['AppUser']['nickname']))
|
|
|
|
$con['AppUser.nickname LIKE'] = '%' . $this->request->data['AppUser']['nickname'] . '%';
|
|
|
|
|
|
|
|
$companies = $this->DreamjobCompany->find('all', array('conditions' => $con));
|
|
|
|
|
|
|
|
$this->set("branches", $this->DreamjobListBranch->find('list'));
|
|
|
|
$this->set("cities", $this->DreamjobListCity->find('list'));
|
|
|
|
|
|
|
|
$this->set("companies", $companies);
|
|
|
|
$this->render('/Search/company');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function auto() {
|
|
|
|
$this->MiconwareSession->init($this);
|
|
|
|
|
|
|
|
$this->MiconwareSession->initWeb($this);
|
|
|
|
$profil = $this->MiconwareSession->getWorker();
|
|
|
|
if (!empty($profil) and count($profil) > 0) {
|
|
|
|
$con = $this->MiconwareSession->getOpeningCondition();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$openings = $this->DreamjobJobOpening->find('all', array('conditions' => $con));
|
|
|
|
$this->set("openings", $openings);
|
|
|
|
$this->render('/Search/auto');
|
|
|
|
} else {
|
2014-06-10 18:37:45 +02:00
|
|
|
$this->set('error', array('title'=>__('dreamjob.error.noPermision.title'),'text'=>__('dreamjob.error.noPermision.text')));
|
2014-10-04 15:44:21 +02:00
|
|
|
if(!$this->MiconwareSession->isLoggedin())
|
|
|
|
$this->render('/Home/login');
|
|
|
|
else
|
|
|
|
$this->render('/Home/error');
|
2014-05-11 13:36:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function worker() {
|
|
|
|
$this->MiconwareSession->init($this);
|
|
|
|
|
|
|
|
$this->MiconwareSession->initWeb($this);
|
|
|
|
$profil = $this->MiconwareSession->getCompany();
|
|
|
|
if (!empty($profil) and count($profil) > 0) {
|
2014-05-11 15:36:15 +02:00
|
|
|
$con = array('DreamjobWorker.searchhidden' => true);
|
2014-05-11 13:36:55 +02:00
|
|
|
$con2 = array();
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobISearch']['branch_id']))
|
|
|
|
$con2['DreamjobISearch.branch_id'] = $this->request->data['DreamjobISearch']['branch_id'];
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobISearch']['job_id']))
|
|
|
|
$con2['DreamjobISearch.job_id'] = $this->request->data['DreamjobISearch']['job_id'];
|
|
|
|
|
|
|
|
if (!empty($this->request->data['DreamjobISearch']['kindofjob_id']))
|
|
|
|
$con2['DreamjobISearch.kindofjob_id'] = $this->request->data['DreamjobISearch']['kindofjob_id'];
|
|
|
|
|
|
|
|
if(count($con2)>0){
|
|
|
|
$a = $this->DreamjobISearch->find('all',array('fields' => array('worker_id'),'recursive' => -1,'conditions' =>$con2));
|
|
|
|
$c = array();
|
|
|
|
foreach ($a as $b)
|
|
|
|
$c[] = $b['DreamjobISearch']['worker_id'];
|
|
|
|
$con['DreamjobWorker.djaccount_ptr_id'] =$c;
|
|
|
|
}
|
|
|
|
$workers = $this->DreamjobWorker->find('all', array('conditions' => $con));
|
|
|
|
|
|
|
|
$this->set("workers", $workers);
|
|
|
|
$this->set("branches", $this->DreamjobListBranch->find('list'));
|
|
|
|
$this->set("jobs", $this->DreamjobListJob->find('list'));
|
|
|
|
$this->set("kindofjobs", $this->DreamjobListKindofjob->find('list'));
|
|
|
|
$this->render('/Search/worker');
|
|
|
|
}else {
|
2014-06-10 18:37:45 +02:00
|
|
|
$this->set('error', array('title'=>__('dreamjob.error.noPermision.title'),'text'=>__('dreamjob.error.noPermision.text')));
|
2014-10-04 15:44:21 +02:00
|
|
|
if(!$this->MiconwareSession->isLoggedin())
|
|
|
|
$this->render('/Home/login');
|
|
|
|
else
|
|
|
|
$this->render('/Home/error');
|
2014-05-11 13:36:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function education() {
|
|
|
|
$this->spezial('education');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function academy() {
|
|
|
|
$this->spezial('academy');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function internship() {
|
|
|
|
$this->spezial('internship');
|
|
|
|
}
|
|
|
|
|
2014-03-29 21:39:56 +01:00
|
|
|
}
|