123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- {
- "application": "simple storage server",
- "ver": "1.0.0",
- "wip": true,
- "entrypoint": {
- "GET": {
- "/": {
- "desc": "get information about the server API",
- "params": null,
- "return": "description of the API"
- },
- "/authentication": {
- "desc": "indicates whether authentication is required on the server",
- "params": null,
- "return": [
- {
- "key": "success",
- "value": true
- },
- {
- "key": "authentication",
- "value": "boolean"
- }
- ]
- },
- "/token": {
- "desc": "indicates whether the token is valid",
- "params": [
- {
- "key": "user",
- "value": "string",
- "desc": "name of the user"
- },
- {
- "key": "token",
- "value": "string"
- }
- ],
- "return": [
- {
- "key": "success",
- "value": true
- },
- {
- "key": "valid",
- "value": "boolean"
- }
- ]
- },
- "/list": {
- "desc": "list of user files",
- "params": [
- {
- "key": "user",
- "value": "string",
- "desc": "name of the user"
- },
- {
- "key": "token",
- "value": "string"
- }
- ],
- "return": [
- {
- "key": "success",
- "value": true
- },
- {
- "key": "total",
- "value": "number"
- },
- {
- "key": "list",
- "value": "string array",
- "desc": "array of fileId"
- }
- ]
- },
- "/{fileId}": {
- "desc": "get a file",
- "params": [
- {
- "key": "user",
- "value": "string",
- "desc": "name of the user"
- },
- {
- "key": "token",
- "value": "string"
- }
- ],
- "return": [
- {
- "key": "success",
- "value": true
- },
- {
- "key": "fileId",
- "value": "string"
- },
- {
- "key": "filename",
- "value": "string"
- },
- {
- "key": "data",
- "value": "string"
- }
- ]
- }
- },
- "POST": {
- "/register": {
- "desc": "register a new user",
- "params": [
- {
- "key": "user",
- "value": "string",
- "desc": "name of the new user"
- },
- {
- "key": "password",
- "value": "string",
- "desc": "password of the new user"
- }
- ],
- "return": [
- {
- "key": "success",
- "value": true
- }
- ]
- },
- "/login": {
- "desc": "Connect a user",
- "params": [
- {
- "key": "user",
- "value": "string",
- "desc": "name of the user"
- },
- {
- "key": "password",
- "value": "string",
- "desc": "password of the new user"
- }
- ],
- "return": [
- {
- "key": "success",
- "value": true
- },
- {
- "key": "token",
- "value": "string"
- }
- ]
- },
- "/save": {
- "desc": "save a new file",
- "params": [
- {
- "key": "user",
- "value": "string",
- "desc": "name of the user"
- },
- {
- "key": "token",
- "value": "string"
- },
- {
- "key": "file",
- "value": "string",
- "desc": "name of the file"
- },
- {
- "key": "data",
- "value": "string",
- "desc": "content of the file"
- }
- ],
- "return": [
- {
- "key": "success",
- "value": true
- },
- {
- "key": "fileId",
- "value": "string"
- },
- {
- "key": "filename",
- "value": "string"
- }
- ]
- }
- },
- "PUT": {
- "/save/{fileId}": {
- "desc": "save an existing file",
- "params": [
- {
- "key": "user",
- "value": "string",
- "desc": "name of the user"
- },
- {
- "key": "token",
- "value": "string"
- },
- {
- "key": "data",
- "value": "string",
- "desc": "content of the file"
- }
- ],
- "return": [
- {
- "key": "success",
- "value": true
- },
- {
- "key": "fileId",
- "value": "string"
- }
- ]
- }
- },
- "/rename/{fileId}": {
- "desc": "rename an existing file",
- "params": [
- {
- "key": "user",
- "value": "string",
- "desc": "name of the user"
- },
- {
- "key": "token",
- "value": "string"
- },
- {
- "key": "name",
- "value": "string",
- "desc": "new name of the file"
- }
- ],
- "return": [
- {
- "key": "success",
- "value": true
- },
- {
- "key": "fileId",
- "value": "string"
- },
- {
- "key": "filename",
- "value": "string"
- }
- ]
- }
- },
- "DELETE": {
- "/{fileId}": {
- "desc": "delete an existing file",
- "params": [
- {
- "key": "user",
- "value": "string",
- "desc": "name of the user"
- },
- {
- "key": "token",
- "value": "string"
- }
- ],
- "return": [
- {
- "key": "success",
- "value": true
- }
- ]
- }
- },
- "Error": {
- "desc": "Return when error occurs",
- "returns": [
- {
- "key": "success",
- "value": false
- },
- {
- "key": "code",
- "value": "int"
- },
- {
- "key": "message",
- "value": "string"
- }
- ]
- }
- }
|