<?php /** * CodeIgniter * * An open source application development framework for PHP * * This content is released under the MIT License (MIT) * * Copyright (c) 2014-2019 British Columbia Institute of Technology * Copyright (c) 2019-2020 CodeIgniter Foundation * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * @package CodeIgniter * @author CodeIgniter Dev Team * @copyright 2019-2020 CodeIgniter Foundation * @license https://opensource.org/licenses/MIT MIT License * @link https://codeigniter.com * @since Version 3.0.0 * @filesource */ namespace CodeIgniter\RESTful; use CodeIgniter\API\ResponseTrait; use CodeIgniter\Controller; use CodeIgniter\HTTP\RequestInterface; use CodeIgniter\HTTP\ResponseInterface; use Psr\Log\LoggerInterface; /** * An extendable controller to provide a RESTful API for a resource. * * @package CodeIgniter\RESTful */ class ResourceController extends Controller { use ResponseTrait; /** * * @var string Name of the model class managing this resource's data */ protected $modelName; /** * * @var \CodeIgniter\Model the model holding this resource's data */ protected $model; //-------------------------------------------------------------------- public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger) { parent::initController($request, $response, $logger); // instantiate our model, if needed $this->setModel($this->modelName); } //-------------------------------------------------------------------- /** * Return an array of resource objects, themselves in array format * * @return array an array */ public function index() { return $this->fail(lang('RESTful.notImplemented', ['index']), 501); } /** * Return the properties of a resource object * * @return array an array */ public function show($id = null) { return $this->fail(lang('RESTful.notImplemented', ['show']), 501); } /** * Return a new resource object, with default properties * * @return array an array */ public function new() { return $this->fail(lang('RESTful.notImplemented', ['new']), 501); } /** * Create a new resource object, from "posted" parameters * * @return array an array */ public function create() { return $this->fail(lang('RESTful.notImplemented', ['create']), 501); } /** * Return the editable properties of a resource object * * @return array an array */ public function edit($id = null) { return $this->fail(lang('RESTful.notImplemented', ['edit']), 501); } /** * Add or update a model resource, from "posted" properties * * @return array an array */ public function update($id = null) { return $this->fail(lang('RESTful.notImplemented', ['update']), 501); } /** * Delete the designated resource object from the model * * @return array an array */ public function delete($id = null) { return $this->fail(lang('RESTful.notImplemented', ['delete']), 501); } //-------------------------------------------------------------------- /** * Set or change the model this controller is bound to. * Given either the name or the object, determine the other. * * @param string|object $which */ public function setModel($which = null) { // save what we have been given if (! empty($which)) { if (is_object($which)) { $this->model = $which; } else { $this->modelName = $which; } } // make a model object if needed if (empty($this->model) && ! empty($this->modelName)) { if (class_exists($this->modelName)) { $this->model = new $this->modelName; } } // determine model name if needed if (empty($this->modelName) && ! empty($this->model)) { $this->modelName = get_class($this->model); } } /** * Set/change the expected response representation for returned objects * * @param string $format */ public function setFormat(string $format = 'json') { if (in_array($format, ['json', 'xml'])) { $this->format = $format; } } }