CSY2028-assignment-2/jobs/controllers/Portal.php

92 lines
3.4 KiB
PHP

<?php
namespace jobs\controllers;
class Portal {
private $catsTable;
private $jobsTable;
private $appsTable;
private $vars;
public function __construct(\jobs\JobDatabaseTable $catsTable, \jobs\JobDatabaseTable $jobsTable, \jobs\JobDatabaseTable $appsTable) {
$this->catsTable = $catsTable;
$this->jobsTable = $jobsTable;
$this->appsTable = $appsTable;
$this->vars['cats'] = $this->catsTable->findAll();
$this->vars['table'] = 'job_table.html.php';
}
public function home() {
$this->vars['table'] = 'job_table.html.php';
if (isset($_GET['filter'])) {
if ($_SESSION['userType'] == 'client') {
$this->vars['jobs'] = $this->jobsTable->find(['clientId', 'categoryId'], ['value0' => $_SESSION['loggedin'],'value1' => $_GET['filter']]);
}
else {
$this->vars['jobs'] = $this->jobsTable->find(["categoryId"], ['value0' => $_GET['filter']]);
}
}
else {
if ($_SESSION['userType'] == 'client') {
$this->vars['jobs'] = $this->jobsTable->find(['clientId'], ['value0' => $_SESSION['loggedin']]);
}
else {
$this->vars['jobs'] = $this->jobsTable->findAll();
}
}
return ['template' => 'portal.html.php',
'title' => 'Jo\'s Jobs- Jobs',
'vars' => $this->vars];
}
public function homeSubmit() {
if (isset($_POST['job_id'])) {
$this->jobsTable->delete("id", $_POST['job_id']);
return $this->home();
}
if (isset($_POST['cat_id'])) {
$this->catsTable->delete("id", $_POST['cat_id']);
return $this->categories();
}
}
public function categories() {
if ($_SESSION['userType'] == 'admin') {
$this->vars['table'] = 'category_table.html.php';
$this->vars['cats'] = $this->catsTable->findAll();
return ['template' => 'portal.html.php',
'title' => 'Jo\'s Jobs- Categories',
'vars' => $this->vars];
}
else {
$this->vars['response'] = 'You do not have access to this page';
return ['template' => 'response.html.php',
'title' => 'Jo\'s Jobs- Access Denied',
'vars' => $this->vars];
}
}
public function applicants() {
$this->vars['table'] = 'applicant_table.html.php';
$this->vars['apps'] = $this->appsTable->find(['jobId'], ['value0' => $_GET['job_id']]);
$this->vars['job'] = $this->jobsTable->find(['id'], ['value0' => $_GET['job_id']])[0]->title;
return ['template' => 'portal.html.php',
'title' => 'Jo\'s Jobs- Applicants',
'vars' => $this->vars];
}
public function edit() { //TODO: finish this function
if (isset($_GET['job_id'])) {
$this->vars['job'] = $this->jobsTable->find(["id"], ['value0' => $_GET['jod_id']]);
}
if (isset($_GET['cat_id'])) {
$this->vars['cat'] = $this->catsTable->find(["id"], ['value0' => $_GET['cat_id']]);
}
}
//TODO: add functions for adding jobs and categories
public function addJob() {
return ['template' => 'add.html.php',
'title' => 'Add Job',
'vars' => $this->vars];
}
}
?>