* * Licensed under AGPLv3 * (see COPYING for full license text) * */ class Muser extends CI_Model { private $default_upload_id_limits = "3-6"; // last level has the most access private $access_levels = array("basic", "apikey", "full"); function __construct() { parent::__construct(); $this->load->helper("filebin"); $this->load->driver("duser"); } function has_session() { // checking $this doesn't work $CI =& get_instance(); if (property_exists($CI, "session")) { return true; } // Only load the session class if we already have a cookie that might need to be renewed. // Otherwise we just create lots of stale sessions. if (isset($_COOKIE[$this->config->item("sess_cookie_name")])) { $this->load->library("session"); return true; } return false; } function require_session() { if (!$this->has_session()) { $this->load->library("session"); } } function logged_in() { if ($this->has_session()) { return $this->session->userdata('logged_in') == true; } return false; } function login($username, $password) { $this->require_session(); return $this->duser->login($username, $password); } private function login_cli_client() { $username = $this->input->post("username"); $password = $this->input->post("password"); // prefer post parameters if either (username or password) is set if ($username === false && $password === false) { if (isset($_SERVER['PHP_AUTH_USER']) && isset($_SERVER['PHP_AUTH_PW'])) { $username = $_SERVER['PHP_AUTH_USER']; $password = $_SERVER['PHP_AUTH_PW']; } } if ($username !== false && $password !== false) { if ($this->login($username, $password)) { return true; } else { throw new \exceptions\NotAuthenticatedException("user/login-failed", "Login failed"); } } return null; } function apilogin($apikey) { $this->require_session(); // get rid of spaces and newlines $apikey = trim($apikey); $query = $this->db->select('user, access_level') ->from('apikeys') ->where('key', $apikey) ->get()->row_array(); if (isset($query["user"])) { $this->session->set_userdata(array( 'logged_in' => true, 'username' => '', 'userid' => $query["user"], 'access_level' => $query["access_level"], )); return true; } throw new \exceptions\NotAuthenticatedException("user/api-login-failed", "API key login failed"); } function logout() { $this->require_session(); $this->session->unset_userdata('logged_in'); $this->session->unset_userdata('username'); $this->session->unset_userdata('userid'); $this->session->sess_destroy(); } function get_username() { if (!$this->logged_in()) { return ""; } return $this->session->userdata('username'); } function get_userid() { if (!$this->logged_in()) { return 0; } return $this->session->userdata("userid"); } function get_email($userid) { return $this->duser->get_email($userid); } public function get_access_levels() { return $this->access_levels; } private function check_access_level($wanted_level) { $session_level = $this->session->userdata("access_level"); $wanted = array_search($wanted_level, $this->get_access_levels()); $have = array_search($session_level, $this->get_access_levels()); if ($wanted === false || $have === false) { throw new \exceptions\PublicApiException("api/invalid-accesslevel", "Failed to determine access level"); } if ($have >= $wanted) { return; } throw new \exceptions\InsufficientPermissionsException("api/insufficient-permissions", "Access denied: Access level too low"); } function require_access($wanted_level = "full") { if ($this->input->post("apikey") !== false) { $this->apilogin($this->input->post("apikey")); } if (is_cli_client()) { $this->login_cli_client(); } if ($this->logged_in()) { return $this->check_access_level($wanted_level); } throw new \exceptions\NotAuthenticatedException("api/not-authenticated", "Not authenticated. FileBin requires you to have an account, please go to the homepage for more information."); } function username_exists($username) { return $this->duser->username_exists($username); } function get_action($action, $key) { $query = $this->db->from('actions') ->where('key', $key) ->where('action', $action) ->get()->row_array(); if (!isset($query["key"]) || $key != $query["key"]) { throw new \exceptions\UserInputException("user/get_action/invalid-action", "Invalid action key"); } return $query; } public function get_profile_data() { $userid = $this->get_userid(); $fields = array( "user" => $userid, "upload_id_limits" => $this->default_upload_id_limits, ); $query = $this->db->select(implode(', ', array_keys($fields))) ->from('profiles') ->where('user', $userid) ->get()->row_array(); $extra_fields = array( "username" => $this->get_username(), "email" => $this->get_email($userid), ); return array_merge($fields, $query, $extra_fields); } public function update_profile($data) { assert(is_array($data)); $data["user"] = $this->get_userid(); $exists_in_db = $this->db->get_where("profiles", array("user" => $data["user"]))->num_rows() > 0; if ($exists_in_db) { $this->db->where("user", $data["user"]); $this->db->update("profiles", $data); } else { $this->db->insert("profiles", $data); } } public function get_upload_id_limits() { $userid = $this->get_userid(); $query = $this->db->select('upload_id_limits') ->from('profiles') ->where('user', $userid) ->get()->row_array(); if (empty($query)) { return explode("-", $this->default_upload_id_limits); } return explode("-", $query["upload_id_limits"]); } function hash_password($password) { return password_hash($password, PASSWORD_DEFAULT); } }