ソースを参照

Removing Response

ahwelp 7 年 前
コミット
8e26c2768a
1 ファイル変更0 行追加133 行削除
  1. 0 133
      src/BBRouter/Response.php

+ 0 - 133
src/BBRouter/Response.php

@@ -1,133 +0,0 @@
-<?php
-namespace BBRouter;
-
-/*
- *
- *
- */
-class Response{
-
-    private static $_response;
-
-    /*
-     *
-     */
-    public $_headers = Array();
-
-    /*
-     *
-     */
-    public $_body = Array();
-
-    /*
-     *
-     */
-    public $_code = 200;
-
-    //SINGLETON==============================================
-
-    private function __construct(){
-    }
-
-    private static function newObj(){
-        if (!isset( self::$_response )) {
-            self::$_response = new Response();
-        }
-        return self::$_response;
-    }
-
-    public function getInstance(){
-        if (!isset(self::$_response)) {
-            return self::newObj();
-        }
-        return self::$_response;
-    }
-
-    //=======================================================
-
-    public static function header($key, $value){
-        $istance = self::getInstance();
-        $istance->_headers[$key] = $value;
-        return $istance;
-    }
-
-    public static function body_prepend($body = null){
-        $instance = self::getInstance();
-        if (null !== $body) {
-            $instance->_body = (string) $body . $instance->_body;
-            return $instance;
-        }
-        return $instance;
-    }
-
-    public static function body($body = null){
-        $instance = self::getInstance();
-        if (null !== $body) {
-            $instance->_body = (string) $body;
-            return $instance;
-        }
-        return $instance;
-    }
-
-    public static function body_append($body = null){
-        $instance = self::getInstance();
-        if (null !== $body) {
-            $instance->_body .= (string) $body;
-            return $instance;
-        }
-        return $instance;
-    }
-
-    private function send_headers(){
-        foreach ($this->_headers as $key => $value) {
-            header($key .': '. $value, false);
-        }
-        return $this;
-    }
-
-    private function send_body(){
-        echo (string) $this->_body;
-        return $this;
-    }
-
-    public static function send(){
-        $instance = self::getInstance();
-        $instance->send_headers();
-        $instance->send_body();
-        return $instance;
-    }
-
-    public static function json($object, $jsonp_prefix = null){
-        $instance = self::getInstance();
-
-        $instance->body('');
-
-        $json = json_encode($object);
-        if (null !== $jsonp_prefix) {
-            // Should ideally be application/json-p once adopted
-            $instance->header('Content-Type', 'text/javascript');
-            $instance->body("$jsonp_prefix($json);");
-        } else {
-            $instance->header('Content-Type', 'application/json');
-            $instance->body($json);
-        }
-        $instance->send();
-        return $instance;
-    }
-
-    public static function redirect($url, $code = 302){
-        $instance = self::getInstance();
-
-        $instance->_code = $code;
-        $instance->header('Location', $url);
-
-        $instance->body('');
-        $instance->send();
-
-        return $instance;
-    }
-
-    function done(){
-        die;
-    }
-}