mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-04 05:39:28 +00:00
1fcc878cb5
CheckUserAuth and Test controllers now extends directly the REST_Controller
143 lines
2.7 KiB
PHP
143 lines
2.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* FH-Complete
|
|
*
|
|
* @package FHC-API
|
|
* @author FHC-Team
|
|
* @copyright Copyright (c) 2016, fhcomplete.org
|
|
* @license GPLv3
|
|
* @link http://fhcomplete.org
|
|
* @since Version 1.0
|
|
* @filesource
|
|
*/
|
|
// ------------------------------------------------------------------------
|
|
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
class Kontakt extends APIv1_Controller
|
|
{
|
|
/**
|
|
* Person API constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct(
|
|
array(
|
|
'Kontakt' => 'basis/kontakt:rw',
|
|
'OnlyKontakt' => 'basis/kontakt:r',
|
|
'KontaktByPersonID' => 'basis/kontakt:r',
|
|
'OnlyKontaktByPersonID' => 'basis/kontakt:r',
|
|
'KontaktByPersonIDKontaktTyp' => 'basis/kontakt:r'
|
|
)
|
|
);
|
|
|
|
// Load model PersonModel
|
|
$this->load->model('person/kontakt_model', 'KontaktModel');
|
|
}
|
|
|
|
public function getKontakt()
|
|
{
|
|
$kontakt_id = $this->get('kontakt_id');
|
|
|
|
if (isset($kontakt_id))
|
|
{
|
|
$result = $this->KontaktModel->getWholeKontakt($kontakt_id);
|
|
|
|
$this->response($result, REST_Controller::HTTP_OK);
|
|
}
|
|
else
|
|
{
|
|
$this->response();
|
|
}
|
|
}
|
|
|
|
public function getOnlyKontakt()
|
|
{
|
|
$kontakt_id = $this->get('kontakt_id');
|
|
|
|
if (isset($kontakt_id))
|
|
{
|
|
$result = $this->KontaktModel->load($kontakt_id);
|
|
|
|
$this->response($result, REST_Controller::HTTP_OK);
|
|
}
|
|
else
|
|
{
|
|
$this->response();
|
|
}
|
|
}
|
|
|
|
public function getKontaktByPersonID()
|
|
{
|
|
$person_id = $this->get('person_id');
|
|
|
|
if (isset($person_id))
|
|
{
|
|
$result = $this->KontaktModel->getWholeKontakt(null, $person_id);
|
|
|
|
$this->response($result, REST_Controller::HTTP_OK);
|
|
}
|
|
else
|
|
{
|
|
$this->response();
|
|
}
|
|
}
|
|
|
|
public function getOnlyKontaktByPersonID()
|
|
{
|
|
$person_id = $this->get('person_id');
|
|
|
|
if (isset($person_id))
|
|
{
|
|
$result = $this->KontaktModel->loadWhere(array('person_id' => $person_id));
|
|
|
|
$this->response($result, REST_Controller::HTTP_OK);
|
|
}
|
|
else
|
|
{
|
|
$this->response();
|
|
}
|
|
}
|
|
|
|
public function getKontaktByPersonIDKontaktTyp()
|
|
{
|
|
$person_id = $this->get('person_id');
|
|
$kontakttyp = $this->get('kontakttyp');
|
|
|
|
if (isset($person_id) && isset($kontakttyp))
|
|
{
|
|
$result = $this->KontaktModel->getWholeKontakt(null, $person_id, $kontakttyp);
|
|
|
|
$this->response($result, REST_Controller::HTTP_OK);
|
|
}
|
|
else
|
|
{
|
|
$this->response();
|
|
}
|
|
}
|
|
|
|
public function postKontakt()
|
|
{
|
|
$kontakt = $this->post();
|
|
|
|
if (is_array($kontakt))
|
|
{
|
|
if (isset($kontakt['kontakt_id']))
|
|
{
|
|
$result = $this->KontaktModel->update($kontakt['kontakt_id'], $kontakt);
|
|
}
|
|
else
|
|
{
|
|
$result = $this->KontaktModel->insert($kontakt);
|
|
}
|
|
|
|
$this->response($result, REST_Controller::HTTP_OK);
|
|
}
|
|
else
|
|
{
|
|
$this->response();
|
|
}
|
|
}
|
|
}
|