Add new API call to remove users
This commit is contained in:
parent
bac841aa78
commit
83608c050a
@ -132,6 +132,36 @@ Response example:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### removeUser
|
||||||
|
|
||||||
|
- Purpose: **Remove a user** (accessible only by administrators)
|
||||||
|
- Parameters:
|
||||||
|
- **user_id** (integer)
|
||||||
|
- Result on success: **true**
|
||||||
|
- Result on failure: **false**
|
||||||
|
|
||||||
|
Request example:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"method": "removeUser",
|
||||||
|
"id": 2109613284,
|
||||||
|
"params": [
|
||||||
|
3
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Response example:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"result": true,
|
||||||
|
"id": 2109613284
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### getUserByUsername
|
### getUserByUsername
|
||||||
|
|
||||||
|
@ -63,6 +63,15 @@ $procedureHandler->withCallback('getUserByUsername', function ($username) {
|
|||||||
return Model\User\get_user_by_username($username);
|
return Model\User\get_user_by_username($username);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Remove user
|
||||||
|
$procedureHandler->withCallback('removeUser', function ($user_id) {
|
||||||
|
if (! SessionStorage::getInstance()->isAdmin()) {
|
||||||
|
throw new AccessDeniedException('Reserved to administrators');
|
||||||
|
}
|
||||||
|
|
||||||
|
return Model\User\remove_user($user_id);
|
||||||
|
});
|
||||||
|
|
||||||
// Get all feeds
|
// Get all feeds
|
||||||
$procedureHandler->withCallback('getFeeds', function () {
|
$procedureHandler->withCallback('getFeeds', function () {
|
||||||
$user_id = SessionStorage::getInstance()->getUserId();
|
$user_id = SessionStorage::getInstance()->getUserId();
|
||||||
|
@ -45,6 +45,17 @@ class ApiTest extends BaseApiTest
|
|||||||
$this->getApiClient($user)->getUserByUsername('admin');
|
$this->getApiClient($user)->getUserByUsername('admin');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testRemoveUser()
|
||||||
|
{
|
||||||
|
$userId = $this->getApiClient()->createUser(array(
|
||||||
|
'username' => 'api_test2',
|
||||||
|
'password' => 'test123',
|
||||||
|
));
|
||||||
|
|
||||||
|
$this->assertNotFalse($userId);
|
||||||
|
$this->assertTrue($this->getApiClient()->removeUser($userId));
|
||||||
|
}
|
||||||
|
|
||||||
public function testCreateFeed()
|
public function testCreateFeed()
|
||||||
{
|
{
|
||||||
$this->assertNotFalse($this->getApiClient()->createFeed(array(
|
$this->assertNotFalse($this->getApiClient()->createFeed(array(
|
||||||
|
Loading…
Reference in New Issue
Block a user