api.rst
658 lines
| 16.8 KiB
| text/x-rst
|
RstLexer
r1446 | .. _api: | ||
r2095 | === | ||
r1446 | API | ||
=== | |||
Starting from RhodeCode version 1.2 a simple API was implemented. | |||
r1500 | There's a single schema for calling all api methods. API is implemented | ||
Nicolas VINOT
|
r1592 | with JSON protocol both ways. An url to send API request in RhodeCode is | |
r1500 | <your_server>/_admin/api | ||
r1446 | |||
r1839 | API ACCESS FOR WEB VIEWS | ||
++++++++++++++++++++++++ | |||
r1446 | |||
r1911 | API access can also be turned on for each web view in RhodeCode that is | ||
decorated with `@LoginRequired` decorator. To enable API access simple change | |||
the standard login decorator to `@LoginRequired(api_access=True)`. | |||
After this change, a rhodecode view can be accessed without login by adding a | |||
GET parameter `?api_key=<api_key>` to url. By default this is only | |||
r1812 | enabled on RSS/ATOM feed views. | ||
r1839 | API ACCESS | ||
++++++++++ | |||
r1708 | All clients are required to send JSON-RPC spec JSON data:: | ||
r1446 | |||
r1708 | { | ||
r2143 | "id:"<id>", | ||
r1446 | "api_key":"<api_key>", | ||
"method":"<method_name>", | |||
"args":{"<arg_key>":"<arg_val>"} | |||
} | |||
r1500 | Example call for autopulling remotes repos using curl:: | ||
r1708 | curl https://server.com/_admin/api -X POST -H 'content-type:text/plain' --data-binary '{"id":1,"api_key":"xe7cdb2v278e4evbdf5vs04v832v0efvcbcve4a3","method":"pull","args":{"repo":"CPython"}}' | ||
r1500 | |||
Nicolas VINOT
|
r1592 | Simply provide | |
r1708 | - *id* A value of any type, which is used to match the response with the request that it is replying to. | ||
r1500 | - *api_key* for access and permission validation. | ||
- *method* is name of method to call | |||
- *args* is an key:value list of arguments to pass to method | |||
Nicolas VINOT
|
r1592 | ||
r1446 | .. note:: | ||
Nicolas VINOT
|
r1592 | ||
api_key can be found in your user account page | |||
r1708 | RhodeCode API will return always a JSON-RPC response:: | ||
Nicolas VINOT
|
r1592 | ||
r1708 | { | ||
r2143 | "id":<id>, # matching id sent by request | ||
"result": "<result>"|null, # JSON formatted result, null if any errors | |||
"error": "null"|<error_message> # JSON formatted error (if any) | |||
r1446 | } | ||
All responses from API will be `HTTP/1.0 200 OK`, if there's an error while | |||
Nicolas VINOT
|
r1592 | calling api *error* key from response will contain failure description | |
r1446 | and result will be null. | ||
API METHODS | |||
+++++++++++ | |||
Nicolas VINOT
|
r1592 | ||
r1446 | pull | ||
---- | |||
Nicolas VINOT
|
r1592 | Pulls given repo from remote location. Can be used to automatically keep | |
remote repos up to date. This command can be executed only using api_key | |||
r1500 | belonging to user with admin rights | ||
INPUT:: | |||
r2143 | id : <id_for_response> | ||
Nicolas VINOT
|
r1592 | api_key : "<api_key>" | |
method : "pull" | |||
args : { | |||
r1843 | "repo_name" : "<reponame>" | ||
Nicolas VINOT
|
r1592 | } | |
OUTPUT:: | |||
r1843 | result : "Pulled from <reponame>" | ||
Nicolas VINOT
|
r1592 | error : null | |
r1843 | get_user | ||
-------- | |||
r2010 | Get's an user by username or user_id, Returns empty result if user is not found. | ||
r1843 | This command can be executed only using api_key belonging to user with admin | ||
rights. | |||
r1982 | |||
r1843 | INPUT:: | ||
r2143 | id : <id_for_response> | ||
r1843 | api_key : "<api_key>" | ||
method : "get_user" | |||
args : { | |||
r2010 | "userid" : "<username or user_id>" | ||
r1843 | } | ||
OUTPUT:: | |||
result: None if user does not exist or | |||
{ | |||
"id" : "<id>", | |||
"username" : "<username>", | |||
"firstname": "<firstname>", | |||
"lastname" : "<lastname>", | |||
"email" : "<email>", | |||
"active" : "<bool>", | |||
"admin" :Â "<bool>", | |||
r2151 | "ldap_dn" : "<ldap_dn>", | ||
"last_login": "<last_login>", | |||
"permissions": { | |||
"global": ["hg.create.repository", | |||
"repository.read", | |||
"hg.register.manual_activate"], | |||
"repositories": {"repo1": "repository.none"}, | |||
"repositories_groups": {"Group1": "group.read"} | |||
}, | |||
r1843 | } | ||
error: null | |||
Nicolas VINOT
|
r1592 | get_users | |
--------- | |||
Lists all existing users. This command can be executed only using api_key | |||
belonging to user with admin rights. | |||
r1982 | |||
Nicolas VINOT
|
r1592 | INPUT:: | |
r2143 | id : <id_for_response> | ||
Nicolas VINOT
|
r1592 | api_key : "<api_key>" | |
method : "get_users" | |||
args : { } | |||
OUTPUT:: | |||
result: [ | |||
{ | |||
"id" : "<id>", | |||
"username" : "<username>", | |||
"firstname": "<firstname>", | |||
"lastname" : "<lastname>", | |||
"email" : "<email>", | |||
"active" : "<bool>", | |||
"admin" :Â "<bool>", | |||
r2151 | "ldap_dn" : "<ldap_dn>", | ||
"last_login": "<last_login>", | |||
Nicolas VINOT
|
r1592 | }, | |
… | |||
] | |||
error: null | |||
r1982 | |||
Nicolas VINOT
|
r1592 | create_user | |
----------- | |||
r2002 | Creates new user. This command can | ||
r1909 | be executed only using api_key belonging to user with admin rights. | ||
Nicolas VINOT
|
r1592 | ||
r1982 | |||
Nicolas VINOT
|
r1592 | INPUT:: | |
r2143 | id : <id_for_response> | ||
Nicolas VINOT
|
r1592 | api_key : "<api_key>" | |
method : "create_user" | |||
args : { | |||
"username" : "<username>", | |||
"password" : "<password>", | |||
r1950 | "email" : "<useremail>", | ||
"firstname" : "<firstname> = None", | |||
"lastname" : "<lastname> = None", | |||
Nicolas VINOT
|
r1592 | "active" : "<bool> = True", | |
"admin" : "<bool> = False", | |||
"ldap_dn" : "<ldap_dn> = None" | |||
} | |||
r1500 | |||
OUTPUT:: | |||
Nicolas VINOT
|
r1592 | result: { | |
r1843 | "id" : "<new_user_id>", | ||
Nicolas VINOT
|
r1592 | "msg" : "created new user <username>" | |
} | |||
error: null | |||
r1982 | |||
r2002 | update_user | ||
----------- | |||
updates current one if such user exists. This command can | |||
be executed only using api_key belonging to user with admin rights. | |||
INPUT:: | |||
r2143 | id : <id_for_response> | ||
r2002 | api_key : "<api_key>" | ||
method : "update_user" | |||
args : { | |||
r2009 | "userid" : "<user_id or username>", | ||
r2002 | "username" : "<username>", | ||
"password" : "<password>", | |||
"email" : "<useremail>", | |||
r2009 | "firstname" : "<firstname>", | ||
"lastname" : "<lastname>", | |||
"active" : "<bool>", | |||
"admin" : "<bool>", | |||
"ldap_dn" : "<ldap_dn>" | |||
r2002 | } | ||
OUTPUT:: | |||
result: { | |||
"id" : "<edited_user_id>", | |||
"msg" : "updated user <username>" | |||
} | |||
error: null | |||
Nicolas VINOT
|
r1592 | get_users_group | |
--------------- | |||
Gets an existing users group. This command can be executed only using api_key | |||
belonging to user with admin rights. | |||
r1982 | |||
Nicolas VINOT
|
r1592 | INPUT:: | |
r2143 | id : <id_for_response> | ||
Nicolas VINOT
|
r1592 | api_key : "<api_key>" | |
method : "get_users_group" | |||
args : { | |||
"group_name" : "<name>" | |||
} | |||
OUTPUT:: | |||
result : None if group not exist | |||
{ | |||
r1843 | "id" : "<id>", | ||
"group_name" : "<groupname>", | |||
"active": "<bool>", | |||
Nicolas VINOT
|
r1592 | "members" : [ | |
r1843 | { "id" : "<userid>", | ||
"username" : "<username>", | |||
"firstname": "<firstname>", | |||
"lastname" : "<lastname>", | |||
"email" : "<email>", | |||
"active" : "<bool>", | |||
"admin" :Â "<bool>", | |||
"ldap" : "<ldap_dn>" | |||
}, | |||
… | |||
] | |||
Nicolas VINOT
|
r1592 | } | |
error : null | |||
r1982 | |||
r1843 | get_users_groups | ||
---------------- | |||
Lists all existing users groups. This command can be executed only using | |||
api_key belonging to user with admin rights. | |||
r1982 | |||
r1843 | INPUT:: | ||
r2143 | id : <id_for_response> | ||
r1843 | api_key : "<api_key>" | ||
method : "get_users_groups" | |||
args : { } | |||
OUTPUT:: | |||
result : [ | |||
{ | |||
"id" : "<id>", | |||
"group_name" : "<groupname>", | |||
"active": "<bool>", | |||
"members" : [ | |||
{ | |||
"id" : "<userid>", | |||
"username" : "<username>", | |||
"firstname": "<firstname>", | |||
"lastname" : "<lastname>", | |||
"email" : "<email>", | |||
"active" : "<bool>", | |||
"admin" :Â "<bool>", | |||
"ldap" : "<ldap_dn>" | |||
}, | |||
… | |||
] | |||
} | |||
] | |||
error : null | |||
r1500 | create_users_group | ||
------------------ | |||
Nicolas VINOT
|
r1592 | Creates new users group. This command can be executed only using api_key | |
r1500 | belonging to user with admin rights | ||
r1982 | |||
r1500 | INPUT:: | ||
r2143 | id : <id_for_response> | ||
Nicolas VINOT
|
r1592 | api_key : "<api_key>" | |
method : "create_users_group" | |||
args: { | |||
r1843 | "group_name": "<groupname>", | ||
Nicolas VINOT
|
r1592 | "active":"<bool> = True" | |
} | |||
OUTPUT:: | |||
result: { | |||
"id": "<newusersgroupid>", | |||
r1843 | "msg": "created new users group <groupname>" | ||
Nicolas VINOT
|
r1592 | } | |
error: null | |||
r1982 | |||
r1793 | add_user_to_users_group | ||
----------------------- | |||
Nicolas VINOT
|
r1592 | ||
r1989 | Adds a user to a users group. If user exists in that group success will be | ||
`false`. This command can be executed only using api_key | |||
Nicolas VINOT
|
r1592 | belonging to user with admin rights | |
r1982 | |||
Nicolas VINOT
|
r1592 | INPUT:: | |
r2143 | id : <id_for_response> | ||
Nicolas VINOT
|
r1592 | api_key : "<api_key>" | |
method : "add_user_users_group" | |||
args: { | |||
"group_name" : "<groupname>", | |||
r1810 | "username" : "<username>" | ||
Nicolas VINOT
|
r1592 | } | |
OUTPUT:: | |||
result: { | |||
"id": "<newusersgroupmemberid>", | |||
r1989 | "success": True|False # depends on if member is in group | ||
"msg": "added member <username> to users group <groupname> | | |||
User is already in that group" | |||
} | |||
error: null | |||
remove_user_from_users_group | |||
---------------------------- | |||
Removes a user from a users group. If user is not in given group success will | |||
be `false`. This command can be executed only | |||
using api_key belonging to user with admin rights | |||
INPUT:: | |||
r2143 | id : <id_for_response> | ||
r1989 | api_key : "<api_key>" | ||
method : "remove_user_from_users_group" | |||
args: { | |||
"group_name" : "<groupname>", | |||
"username" : "<username>" | |||
} | |||
OUTPUT:: | |||
result: { | |||
"success": True|False, # depends on if member is in group | |||
"msg": "removed member <username> from users group <groupname> | | |||
User wasn't in group" | |||
Nicolas VINOT
|
r1592 | } | |
error: null | |||
r1982 | |||
r1843 | get_repo | ||
-------- | |||
r2146 | Gets an existing repository by it's name or repository_id. Members will return | ||
either users_group or user associated to that repository. This command can | |||
r2010 | be executed only using api_key belonging to user with admin rights. | ||
r1843 | |||
r1982 | |||
r1843 | INPUT:: | ||
r2143 | id : <id_for_response> | ||
r1843 | api_key : "<api_key>" | ||
method : "get_repo" | |||
args: { | |||
r2010 | "repoid" : "<reponame or repo_id>" | ||
r1843 | } | ||
OUTPUT:: | |||
result: None if repository does not exist or | |||
{ | |||
"id" : "<id>", | |||
"repo_name" : "<reponame>" | |||
"type" : "<type>", | |||
"description" : "<description>", | |||
"members" : [ | |||
r2146 | { | ||
"type": "user", | |||
"id" : "<userid>", | |||
r1843 | "username" : "<username>", | ||
"firstname": "<firstname>", | |||
"lastname" : "<lastname>", | |||
"email" : "<email>", | |||
"active" : "<bool>", | |||
"admin" :Â "<bool>", | |||
"ldap" : "<ldap_dn>", | |||
"permission" : "repository.(read|write|admin)" | |||
}, | |||
… | |||
r2146 | { | ||
"type": "users_group", | |||
r1843 | "id" : "<usersgroupid>", | ||
"name" : "<usersgroupname>", | |||
"active": "<bool>", | |||
"permission" : "repository.(read|write|admin)" | |||
}, | |||
… | |||
] | |||
} | |||
error: null | |||
r1982 | |||
Nicolas VINOT
|
r1592 | get_repos | |
--------- | |||
Lists all existing repositories. This command can be executed only using api_key | |||
belonging to user with admin rights | |||
r1982 | |||
Nicolas VINOT
|
r1592 | INPUT:: | |
r2143 | id : <id_for_response> | ||
Nicolas VINOT
|
r1592 | api_key : "<api_key>" | |
method : "get_repos" | |||
args: { } | |||
r1500 | |||
OUTPUT:: | |||
Nicolas VINOT
|
r1592 | result: [ | |
{ | |||
"id" : "<id>", | |||
r1843 | "repo_name" : "<reponame>" | ||
Nicolas VINOT
|
r1592 | "type" : "<type>", | |
"description" : "<description>" | |||
}, | |||
… | |||
] | |||
error: null | |||
r1810 | get_repo_nodes | ||
-------------- | |||
returns a list of nodes and it's children in a flat list for a given path | |||
r1843 | at given revision. It's possible to specify ret_type to show only `files` or | ||
`dirs`. This command can be executed only using api_key belonging to user | |||
r1810 | with admin rights | ||
r1982 | |||
r1810 | INPUT:: | ||
r2143 | id : <id_for_response> | ||
r1810 | api_key : "<api_key>" | ||
method : "get_repo_nodes" | |||
args: { | |||
r1843 | "repo_name" : "<reponame>", | ||
r1810 | "revision" : "<revision>", | ||
"root_path" : "<root_path>", | |||
"ret_type" : "<ret_type>" = 'all' | |||
} | |||
OUTPUT:: | |||
result: [ | |||
{ | |||
"name" : "<name>" | |||
"type" : "<type>", | |||
}, | |||
… | |||
] | |||
error: null | |||
Nicolas VINOT
|
r1592 | create_repo | |
----------- | |||
Creates a repository. This command can be executed only using api_key | |||
belonging to user with admin rights. | |||
If repository name contains "/", all needed repository groups will be created. | |||
For example "foo/bar/baz" will create groups "foo", "bar" (with "foo" as parent), | |||
and create "baz" repository with "bar" as group. | |||
r1982 | |||
Nicolas VINOT
|
r1592 | INPUT:: | |
r2143 | id : <id_for_response> | ||
Nicolas VINOT
|
r1592 | api_key : "<api_key>" | |
method : "create_repo" | |||
args: { | |||
r1843 | "repo_name" : "<reponame>", | ||
Nicolas VINOT
|
r1592 | "owner_name" : "<ownername>", | |
"description" : "<description> = ''", | |||
"repo_type" : "<type> = 'hg'", | |||
r2006 | "private" : "<bool> = False", | ||
"clone_uri" : "<clone_uri> = None", | |||
Nicolas VINOT
|
r1592 | } | |
OUTPUT:: | |||
r1843 | result: { | ||
r1982 | "id": "<newrepoid>", | ||
"msg": "Created new repository <reponame>", | |||
r1843 | } | ||
Nicolas VINOT
|
r1592 | error: null | |
r1982 | |||
r2003 | delete_repo | ||
----------- | |||
Deletes a repository. This command can be executed only using api_key | |||
belonging to user with admin rights. | |||
INPUT:: | |||
r2143 | id : <id_for_response> | ||
r2003 | api_key : "<api_key>" | ||
method : "delete_repo" | |||
args: { | |||
"repo_name" : "<reponame>", | |||
} | |||
OUTPUT:: | |||
result: { | |||
"msg": "Deleted repository <reponame>", | |||
} | |||
error: null | |||
r1982 | grant_user_permission | ||
--------------------- | |||
Nicolas VINOT
|
r1592 | ||
r1982 | Grant permission for user on given repository, or update existing one | ||
if found. This command can be executed only using api_key belonging to user | |||
with admin rights. | |||
Nicolas VINOT
|
r1592 | ||
INPUT:: | |||
r2143 | id : <id_for_response> | ||
Nicolas VINOT
|
r1592 | api_key : "<api_key>" | |
r1982 | method : "grant_user_permission" | ||
Nicolas VINOT
|
r1592 | args: { | |
"repo_name" : "<reponame>", | |||
r1843 | "username" : "<username>", | ||
r1982 | "perm" : "(repository.(none|read|write|admin))", | ||
} | |||
OUTPUT:: | |||
result: { | |||
"msg" : "Granted perm: <perm> for user: <username> in repo: <reponame>" | |||
} | |||
error: null | |||
revoke_user_permission | |||
---------------------- | |||
Revoke permission for user on given repository. This command can be executed | |||
only using api_key belonging to user with admin rights. | |||
INPUT:: | |||
r2143 | id : <id_for_response> | ||
r1982 | api_key : "<api_key>" | ||
method : "revoke_user_permission" | |||
args: { | |||
"repo_name" : "<reponame>", | |||
"username" : "<username>", | |||
Nicolas VINOT
|
r1592 | } | |
OUTPUT:: | |||
r1843 | result: { | ||
r1982 | "msg" : "Revoked perm for user: <suername> in repo: <reponame>" | ||
r1843 | } | ||
Nicolas VINOT
|
r1592 | error: null | |
r1793 | |||
r1982 | |||
grant_users_group_permission | |||
---------------------------- | |||
r1793 | |||
r1982 | Grant permission for users group on given repository, or update | ||
existing one if found. This command can be executed only using | |||
api_key belonging to user with admin rights. | |||
r1793 | |||
INPUT:: | |||
r2143 | id : <id_for_response> | ||
r1793 | api_key : "<api_key>" | ||
r1982 | method : "grant_users_group_permission" | ||
args: { | |||
"repo_name" : "<reponame>", | |||
"group_name" : "<usersgroupname>", | |||
"perm" : "(repository.(none|read|write|admin))", | |||
} | |||
OUTPUT:: | |||
result: { | |||
"msg" : "Granted perm: <perm> for group: <usersgroupname> in repo: <reponame>" | |||
} | |||
error: null | |||
revoke_users_group_permission | |||
----------------------------- | |||
Revoke permission for users group on given repository.This command can be | |||
executed only using api_key belonging to user with admin rights. | |||
INPUT:: | |||
r2143 | id : <id_for_response> | ||
r1982 | api_key : "<api_key>" | ||
method : "revoke_users_group_permission" | |||
r1793 | args: { | ||
"repo_name" : "<reponame>", | |||
r1982 | "users_group" : "<usersgroupname>", | ||
r1843 | } | ||
r1982 | |||
r1843 | OUTPUT:: | ||
r1982 | |||
r1843 | result: { | ||
r1982 | "msg" : "Revoked perm for group: <usersgroupname> in repo: <reponame>" | ||
r1843 | } | ||
r1982 | error: null |