1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 17:12:41 +00:00
Arsse/lib/User/Driver.php

33 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1);
2017-03-28 04:12:12 +00:00
namespace JKingWeb\Arsse\User;
2017-08-29 14:50:31 +00:00
interface Driver {
2017-02-16 20:29:42 +00:00
const FUNC_NOT_IMPLEMENTED = 0;
const FUNC_INTERNAL = 1;
const FUNC_EXTERNAL = 2;
// returns an instance of a class implementing this interface.
2017-08-29 14:50:31 +00:00
public function __construct();
// returns a human-friendly name for the driver (for display in installer, for example)
2017-08-29 14:50:31 +00:00
public static function driverName(): string;
// authenticates a user against their name and password
2017-08-29 14:50:31 +00:00
public function auth(string $user, string $password): bool;
// check whether a user is authorized to perform a certain action; not currently used and subject to change
public function authorize(string $affectedUser, string $action): bool;
// checks whether a user exists
2017-08-29 14:50:31 +00:00
public function userExists(string $user): bool;
// adds a user
public function userAdd(string $user, string $password = null);
// removes a user
2017-08-29 14:50:31 +00:00
public function userRemove(string $user): bool;
// lists all users
public function userList(): array;
// sets a user's password; if the driver does not require the old password, it may be ignored
public function userPasswordSet(string $user, string $newPassword = null, string $oldPassword = null);
2017-08-29 14:50:31 +00:00
}