2020-05-12 01:26:09 +00:00
|
|
|
const ldap_routes = {
|
|
|
|
prefix: '/api/v1/ldap',
|
|
|
|
|
|
|
|
middleware: [
|
2020-05-17 04:55:08 +00:00
|
|
|
'auth:APIRoute',
|
2020-05-12 01:26:09 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
get: {
|
|
|
|
'/clients': [
|
|
|
|
['middleware::api:Permission', { check: 'v1:ldap:clients:list' }],
|
|
|
|
'controller::api:v1:LDAP.get_clients',
|
|
|
|
],
|
|
|
|
'/clients/:id': [
|
|
|
|
['middleware::api:Permission', { check: 'v1:ldap:clients:get' }],
|
|
|
|
'controller::api:v1:LDAP.get_client',
|
|
|
|
],
|
|
|
|
'/groups': [
|
|
|
|
['middleware::api:Permission', { check: 'v1:ldap:groups:list' }],
|
|
|
|
'controller::api:v1:LDAP.get_groups',
|
|
|
|
],
|
|
|
|
'/groups/:id': [
|
|
|
|
['middleware::api:Permission', { check: 'v1:ldap:groups:get' }],
|
|
|
|
'controller::api:v1:LDAP.get_group',
|
|
|
|
],
|
2020-05-22 03:56:48 +00:00
|
|
|
'/config': [
|
|
|
|
['middleware::api:Permission', { check: 'v1:ldap:config:get' }],
|
|
|
|
'controller::api:v1:LDAP.get_config',
|
|
|
|
],
|
2020-05-12 01:26:09 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
post: {
|
|
|
|
'/clients': [
|
|
|
|
['middleware::api:Permission', { check: 'v1:ldap:clients:create' }],
|
|
|
|
'controller::api:v1:LDAP.create_client',
|
|
|
|
],
|
|
|
|
'/groups': [
|
|
|
|
['middleware::api:Permission', { check: 'v1:ldap:groups:create' }],
|
|
|
|
'controller::api:v1:LDAP.create_group',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
patch: {
|
|
|
|
'/clients/:id': [
|
|
|
|
['middleware::api:Permission', { check: 'v1:ldap:clients:update' }],
|
|
|
|
'controller::api:v1:LDAP.update_client',
|
|
|
|
],
|
|
|
|
'/groups/:id': [
|
|
|
|
['middleware::api:Permission', { check: 'v1:ldap:groups:update' }],
|
|
|
|
'controller::api:v1:LDAP.update_group',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
delete: {
|
|
|
|
'/clients/:id': [
|
|
|
|
['middleware::api:Permission', { check: 'v1:ldap:clients:delete' }],
|
|
|
|
'controller::api:v1:LDAP.delete_client',
|
|
|
|
],
|
|
|
|
'/groups/:id': [
|
|
|
|
['middleware::api:Permission', { check: 'v1:ldap:groups:delete' }],
|
|
|
|
'controller::api:v1:LDAP.delete_group',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = exports = ldap_routes
|