diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-10-07 12:50:18 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-11-05 19:44:15 +0100 |
commit | 13bb81e04c1116fae955dc39bbfe5fcb8b17313f (patch) | |
tree | d4f620004c1473a29a61c4a6615c06e9b513bf7c /application/controllers/api/v1/user.php | |
parent | b42cce9521b142453bb8b9a228c166f2b407de77 (diff) |
API: Drop v1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/controllers/api/v1/user.php')
-rw-r--r-- | application/controllers/api/v1/user.php | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/application/controllers/api/v1/user.php b/application/controllers/api/v1/user.php deleted file mode 100644 index 38247d02c..000000000 --- a/application/controllers/api/v1/user.php +++ /dev/null @@ -1,75 +0,0 @@ -<?php -/* - * Copyright 2014 Florian "Bluewind" Pritz <bluewind@server-speed.net> - * - * Licensed under AGPLv3 - * (see COPYING for full license text) - * - */ -namespace controllers\api\v1; - -class user extends \controllers\api\api_controller { - public function __construct() - { - parent::__construct(); - - $this->load->model('muser'); - } - - public function apikeys() - { - $this->muser->require_access("full"); - return \service\user::apikeys($this->muser->get_userid()); - } - - public function create_apikey() - { - $username = $this->input->post("username"); - $password = $this->input->post("password"); - if ($username && $password) { - if (!$this->muser->login($username, $password)) { - throw new \exceptions\NotAuthenticatedException("user/login-failed", "Login failed"); - } - } - - $this->muser->require_access("full"); - - $userid = $this->muser->get_userid(); - $comment = $this->input->post("comment"); - $comment = $comment === false ? "" : $comment; - $access_level = $this->input->post("access_level"); - - $key = \service\user::create_apikey($userid, $comment, $access_level); - - return array( - "new_key" => $key, - ); - } - - public function delete_apikey() - { - $this->muser->require_access("full"); - - $userid = $this->muser->get_userid(); - $key = $this->input->post("delete_key"); - - $this->db->where('user', $userid) - ->where('key', $key) - ->delete('apikeys'); - - $affected = $this->db->affected_rows(); - - assert($affected >= 0 && $affected <= 1); - if ($affected == 1) { - return array( - "deleted_keys" => array( - $key => array ( - "key" => $key, - ), - ), - ); - } else { - throw new \exceptions\PublicApiException('user/delete_apikey/failed', 'Apikey deletion failed. Possibly wrong owner.'); - } - } -} |