web-dev-qa-db-ja.com

codeigniterレストサーバーライブラリのトークンベース認証

Phil Sturgeonの rest server を使用して、codeigniterに安らかなAPIを構築しようとしています。

問題は、トークンベースの認証を行う方法がわからないことです。モバイルアプリ用のAPIを作成していますが、HTTPS経由です。まずユーザーはログインして認証を行い、その後アプリの機能を使用できるようになります。ここで説明する方法で実装したい: トークンベースの認証の仕組み

質問:

リクエストでトークンをサーバーに送信する場合、どこで有効性を確認する必要がありますか?
残りのサーバーライブラリはトークンベースの認証をサポートしていますか?
どの構成を行う必要があるのですか?または認証方法を実装する必要がありますか?

またはトークンベースではなく、より良い/より簡単な認証方法がありますか?

10

トークン認証はサポートしていません。これを追加するために行った変更を次に示します。 REST_Controller.phpで「switch($ rest_auth){」を検索して、このケースを追加します。

        case 'token':
            $this->_check_token();
            break;

次に、この関数を追加します。

/** Check to see if the user is logged in with a token
 * @access protected
 */
protected function _check_token () {
    if (!empty($this->_args[$this->config->item('rest_token_name')])
            && $row = $this->rest->db->where('token', $this->_args[$this->config->item('rest_token_name')])->get($this->config->item('rest_tokens_table'))->row()) {
        $this->api_token = $row;
    } else {
        $this->response([
                $this->config->item('rest_status_field_name') => FALSE,
                $this->config->item('rest_message_field_name') => $this->lang->line('text_rest_unauthorized')
                ], self::HTTP_UNAUTHORIZED);
    }
}   

config/rest.php

    // *** Tokens ***
/* Default table schema:
 * CREATE TABLE `api_tokens` (
    `api_token_id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
    `token` VARCHAR(50) NOT NULL,
    `created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
    PRIMARY KEY (`api_token_id`)
)
COLLATE='latin1_swedish_ci'
ENGINE=InnoDB
 */
$config['rest_token_name'] = 'X-Auth-Token';
$config['rest_tokens_table'] = 'api_tokens';

トークンを取得するコントローラー:

トークンを取得するために休憩コントローラーを作成しました。

require APPPATH . 'libraries/REST_Controller.php';
class Token extends REST_Controller {
    /** 
     * @response array
     */
    public function index_get() {
        $data = $this->Api_model->create_token($this->api_customer_id);

        // ***** Response ******
        $http_code = $data['http_code'];
        unset($data['http_code']);
        $this->response($data, $http_code);
    }
}

トークンのモデルの機能:

/** Creates a new token
* @param type $in
* @return type
*/
function create_token ($customer_id) {
    $this->load->database();

    // ***** Generate Token *****
    $char = "bcdfghjkmnpqrstvzBCDFGHJKLMNPQRSTVWXZaeiouyAEIOUY!@#%";
    $token = '';
    for ($i = 0; $i < 47; $i++) $token .= $char[(Rand() % strlen($char))];

    // ***** Insert into Database *****
    $sql = "INSERT INTO api_tokens SET `token` = ?, customer_id = ?;";
    $this->db->query($sql, [$token, $customer_id];

    return array('http_code' => 200, 'token' => $token);
}