使用TP5创建一个REST API

原文在这里 : http://hmw.iteye.com/blog/1190827

tp自带的api,get请求接口

/**
     * 显示资源列表
     *
     * @return \think\Response
     */
    public function index(Request $request)
    {
//        $request_method = strtolower($_SERVER[‘REQUEST_METHOD‘]);
//        $return_onj = new RestRequest();
//        $data = db(‘ShopGoods‘)->select();

        $data = RestUtils::processRequest();
        $method = $data->getMethod();
//        print_r($method);

        switch($method){
            case ‘get‘:
                $user_list = db(‘ShopGoods‘)->limit(2)->select();
//                print_r($user_list);
                if($data->getHttpAccept() == ‘json‘){
                    RestUtils::sendResponse(200, json_encode($user_list), ‘application/json‘);
                }else if ($data->getHttpAccept() == ‘xml‘) {
                    // using the XML_SERIALIZER Pear Package
                    $options = array
                    (
                        ‘indent‘ => ‘     ‘,
                        ‘addDecl‘ => false,
//                        ‘rootName‘ => $fc->getAction(),
                        XML_SERIALIZER_OPTION_RETURN_RESULT => true
                    );
                    $serializer = new XML_Serializer($options);

                    RestUtils::sendResponse(200, $serializer->serialize($user_list), ‘application/xml‘);
                }
                break;
            case ‘post‘:
                $user = new User();
                $user->setFirstName($data->getData()->first_name);  // just for example, this should be done cleaner
                // and so on...
                $user->save();
                break;
            // etc, etc, etc...
        }

    }

2、  实现接口请求处理和请求处理的方法‘’

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2017/6/26
 * Time: 10:18
 */
namespace app\api\controller;
use app\api\controller\RestRequest;

//简单的class来存储request的一些信息(RestRequest),和一个提供几个静态方法的class来处理请求和响应
class RestUtils
{
    //根据请求的内容类型来处理JSON或者XML,但是让我们现在简单一点。那么,我们处理请求的方法将会类似于这样
    public static function processRequest(){
        // get our verb 获取动作
        $request_method = strtolower($_SERVER[‘REQUEST_METHOD‘]);
        $return_obj     = new RestRequest();
        // we‘ll store our data here 在这里存储请求数据
        $data           = array();
        switch ($request_method){
            // gets are easy...
            case ‘get‘:
                $data = $_GET;
                break;
            // so are posts
            case ‘post‘:
                $data = $_POST;
                break;
            // here‘s the tricky bit...
            case ‘put‘:
                // basically, we read a string from PHP‘s special input location,
                // and then parse it out into an array via parse_str... per the PHP docs:
                // Parses str  as if it were the query string passed via a URL and sets
                // variables in the current scope.
                parse_str(file_get_contents(‘php://input‘), $put_vars);
                $data = $put_vars;
                break;
            case ‘delete‘:

                break;
        }

        // store the method
        $return_obj->setMethod($request_method);

        // set the raw data, so we can access it if needed (there may be
        // other pieces to your requests)
        $return_obj->setRequestVars($data);

        if(isset($data[‘data‘])){
            // translate the JSON to an Object for use however you want
            $return_obj->setData(json_decode($data[‘data‘]));
        }
        return $return_obj;
    }

    public static function sendResponse($status = 200, $body = ‘‘, $content_type = ‘text/html‘){
        $status_header = ‘HTTP/1.1 ‘ . $status . ‘ ‘ . RestUtils::getStatusCodeMessage($status);
        // set the status
        header($status_header);
        // set the content type
        header(‘Content-type: ‘ . $content_type);

        // pages with body are easy
        if($body != ‘‘){
            // send the body
            echo $body;
            exit;
        }
        // we need to create the body if none is passed
        else
        {
            // create some body messages
            $message = ‘‘;

            // this is purely optional, but makes the pages a little nicer to read
            // for your users.  Since you won‘t likely send a lot of different status codes,
            // this also shouldn‘t be too ponderous to maintain
            switch($status) {
                case 401:
                    $message = ‘You must be authorized to view this page.‘;
                    break;
                case 200:
                    $message = ‘You must be authorized to view this page. 200‘;
                    break;
                case 404:
                    $message = ‘The requested URL ‘ . $_SERVER[‘REQUEST_URI‘] . ‘ was not found.‘;
                    break;
                case 500:
                    $message = ‘The server encountered an error processing your request.‘;
                    break;
                case 501:
                    $message = ‘The requested method is not implemented.‘;
                    break;
            }

            // servers don‘t always have a signature turned on (this is an apache directive "ServerSignature On")
            $signature = ($_SERVER[‘SERVER_SIGNATURE‘] == ‘‘) ? $_SERVER[‘SERVER_SOFTWARE‘] . ‘ Server at ‘ . $_SERVER[‘SERVER_NAME‘] . ‘ Port ‘ . $_SERVER[‘SERVER_PORT‘] : $_SERVER[‘SERVER_SIGNATURE‘];

            // this should be templatized in a real-world solution
            $body = ‘<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
                    <html>
                        <head>
                            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
                            <title>‘ . $status . ‘ ‘ . RestUtils::getStatusCodeMessage($status) . ‘</title>
                        </head>
                        <body>
                            <h1>‘ . RestUtils::getStatusCodeMessage($status) . ‘</h1>
                            ‘ . $message . ‘  

                            <hr />
                            <address>‘ . $signature . ‘</address>
                        </body>
                    </html>‘;

            echo $body;
            exit;
        }
    }

    public static function getStatusCodeMessage($status){
        // these could be stored in a .ini file and loaded
        // via parse_ini_file()... however, this will suffice
        // for an example
        // 这些应该被存储在一个.ini的文件中,然后通过parse_ini_file()函数来解析出来,然而这样也足够了,比如:
        $codes = Array(
            100 => ‘Continue‘,
            101 => ‘Switching Protocols‘,
            200 => ‘OK‘,
            201 => ‘Created‘,
            202 => ‘Accepted‘,
            203 => ‘Non-Authoritative Information‘,
            204 => ‘No Content‘,
            205 => ‘Reset Content‘,
            206 => ‘Partial Content‘,
            300 => ‘Multiple Choices‘,
            301 => ‘Moved Permanently‘,
            302 => ‘Found‘,
            303 => ‘See Other‘,
            304 => ‘Not Modified‘,
            305 => ‘Use Proxy‘,
            306 => ‘(Unused)‘,
            307 => ‘Temporary Redirect‘,
            400 => ‘Bad Request‘,
            401 => ‘Unauthorized‘,
            402 => ‘Payment Required‘,
            403 => ‘Forbidden‘,
            404 => ‘Not Found‘,
            405 => ‘Method Not Allowed‘,
            406 => ‘Not Acceptable‘,
            407 => ‘Proxy Authentication Required‘,
            408 => ‘Request Timeout‘,
            409 => ‘Conflict‘,
            410 => ‘Gone‘,
            411 => ‘Length Required‘,
            412 => ‘Precondition Failed‘,
            413 => ‘Request Entity Too Large‘,
            414 => ‘Request-URI Too Long‘,
            415 => ‘Unsupported Media Type‘,
            416 => ‘Requested Range Not Satisfiable‘,
            417 => ‘Expectation Failed‘,
            500 => ‘Internal Server Error‘,
            501 => ‘Not Implemented‘,
            502 => ‘Bad Gateway‘,
            503 => ‘Service Unavailable‘,
            504 => ‘Gateway Timeout‘,
            505 => ‘HTTP Version Not Supported‘
        );

        return (isset($codes[$status])) ? $codes[$status] : ‘‘;
    }
}

  

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2017/6/26
 * Time: 10:18
 */
namespace app\api\controller;
use app\api\controller\RestUtils;

//简单的class来存储request的一些信息(RestRequest),和一个提供几个静态方法的class来处理请求和响应

class RestRequest
{
    private $request_vars;
    private $data;
    private $http_accept;
    private $method;

    public function __construct()
    {
        $this->request_vars = array();
        $this->data = ‘‘;
        $this->http_accept = ‘json‘;//(strpos($_SERVER[‘HTTP_ACCEPT‘],‘json‘)) ? ‘json‘ : ‘xml‘;
        $this->method = ‘get‘;
    }

    public function setData($data){
        $this->data = $data;
    }

    public function setMethod($method){
        $this->method = $method;
    }

    public function setRequestVars($request_vars){
        $this->request_vars = $request_vars;
    }

    public function getData(){
        return $this->data;
    }

    public function getMethod(){
        return $this->method;
    }

    public function getHttpAccept(){
        return $this->http_accept;
    }

    public function getRequestVars(){
        return $this->request_vars;
    }
}

  

时间: 2024-08-28 02:20:49

使用TP5创建一个REST API的相关文章

使用PHP创建一个REST API(译)

最近API在网络领域有些风靡,明确的说是REST的影响力.这实在没什么好惊讶的,因为在任何编程语言中,消费REST API都是非常的容易.构建它也非常的简单,因为本质上你不会用到任何那些已存在很久的HTTP细则.由于Rails对REST做出的深思熟虑的支持,包括提供和消费这些API(这已经被所有那些和我共事的Rails狂热者阐述过),我要赞美Rails,这样的事情并不常发生. 说真的,如果你从未使用过REST,但是使用过(或者更糟糕的,构建过)SOAP API,或仅仅开过一个WSDL并且将你报价

2.4使用属性在 ASP.NET Web API 2 路由创建一个 REST API

Web API 2 支持一种新型的路由,称为属性路由.属性路由的一般概述,请参阅属性路由 Web API 2 中.在本教程中,您将使用属性路由创建一个 REST API 集合的书.API 将支持以下操作 ︰ 行动 URI 的示例 得到的所有书的列表. / api/书 得到一本书的 id. /api/books/1 获得一本书的详细信息. /api/books/1/details 按流派获得书籍的列表. /api/books/fantasy 按出版日期获取书籍的列表. /api/books/dat

创建一个提供数据 API 的 Node.js 网站

创建站点目录 首先,创建一个文件夹用来保存你的站点文件,使用 mkdir 就可以了 PS C:\> mkdir mysite 然后,进入到这个文件夹进行下一步的操作. 创建包说明 使用记事本或者你喜欢的任何纯文本编辑器创建 package.json 文件,文件名是一个约定必须是这个名字. 创建本网站自身的说明,说明依赖的其它包. { "name": "express-api", "version": "0.0.1", &

用PHP创建一个REST APi

认真的讲,假如你从来没有使用过REST,却曾经使用过SOAP API,或者只是简单的打开一个令人头大的WSDL文档.小伙子,我确实要带给你一个好消息! 那么,究竟什么是REST?为什么你应该关心? 在我们开始写代码之前,我想要确认每个人都可以很好的理解什么是REST以及它是如何特别适合APIs的.首先,从技术上来讲,REST并不是仅仅特定于APIs应用,它更多的是一个通用的概念.然而,很明显,我们这篇文章所讨论的REST就是在接口应用的环境下.因此,让我们看看一个API的基本要求已经REST如何

ASP.NET MVC Web API 学习笔记---第一个Web API程序

http://www.cnblogs.com/qingyuan/archive/2012/10/12/2720824.html 1. Web API简单说明 近来很多大型的平台都公开了Web API.比如百度地图 Web API,做过地图相关的人都熟悉.公开服务这种方式可以使它易于与各种各样的设备和客户端平台集成功能,以及通过在浏览器中使用 JavaScript来创建更丰富的HTML体验.所以我相信Web API会越来越有它的用武之地. 说道Web API很多人都会想到Web服务,但是他们仍然有

【转载】ASP.NET MVC Web API 学习笔记---第一个Web API程序

1. Web API简单说明 近来很多大型的平台都公开了Web API.比如百度地图 Web API,做过地图相关的人都熟悉.公开服务这种方式可以使它易于与各种各样的设备和客户端平台集成功能,以及通过在浏览器中使用 JavaScript来创建更丰富的HTML体验.所以我相信Web API会越来越有它的用武之地. 说道Web API很多人都会想到Web服务,但是他们仍然有一定的区别:Web API服务是通过一般的 HTTP公开了,而不是通过更正式的服务合同 (如SOAP)  2. ASP.NET

ASP.NET MVC Web API 学习笔记---第一个Web API程序---近来很多大型的平台都公开了Web API

1. Web API简单说明 近来很多大型的平台都公开了Web API.比如百度地图 Web API,做过地图相关的人都熟悉.公开服务这种方式可以使它易于与各种各样的设备和客户端平台集成功能,以及通过在浏览器中使用 JavaScript来创建更丰富的HTML体验.所以我相信Web API会越来越有它的用武之地. 说道Web API很多人都会想到Web服务,但是他们仍然有一定的区别:Web API服务是通过一般的 HTTP公开了,而不是通过更正式的服务合同 (如SOAP)  2. ASP.NET

通过beego快速创建一个Restful风格API项目及API文档自动化(转)

通过beego快速创建一个Restful风格API项目及API文档自动化 本文演示如何快速(一分钟内,不写一行代码)的根据数据库及表创建一个Restful风格的API项目,及提供便于在线测试API的界面. 一.创建数据库及数据表(MySQL) #db--jeedev -- ---------------------------- -- Table structure for `app` -- ---------------------------- DROP TABLE IF EXISTS `a

创建第一个ArcGIS API for Silverlight应用

原文:创建第一个ArcGIS API for Silverlight应用 在完成前面的开发环境搭建以后,接下来实现我们的第一个ArcGIS API forSilverlight应用程序. 接下来我们一步一步来操作: 1.  打开Visual Studio2010,创建一个Silverlight应用项目及一个宿主的Web网站,如下图: 2.创建好的应用程序结构如下,包括一个Silverlight应用和一个宿主的Web项目. 3.接着右键点击Silverlight项目中的引用,选择添加引用,如下图: