• 欢迎加入MineBBS QQ讨论群:点击查看所有的官方讨论群
  • 我们将于近期对服务器进行迁移,服务可能中断至多2日。请各位安排好自己的访问计划,造成不便敬请谅解!
  • MineBBS入站考试已经上线!想要成为【正式会员】解锁更多功能吗?快来参与吧!【点我去看】
资源图标

源码 PHPBackupAPI - PHP远程备份API v0.1.0-Beta

请登录后获取
版权类型
原创
适用平台
全平台
版权链接
#
语言支持
English
免金粒下载(需要魔法):https://github.com/Jasonzyt/PHPBackupAPI/releases
下面是文档(README.md)
[MD] # BackupAPI ## Requirement - PHP v7.4+ - Web server(Such as Apache, Nginx) ## Config > [`config.php`](config.php): > Config file Before using, please edit this file. There are some default values, you can change them. But you must change `$accessKey`, it is a key to access the API. ## APIs ### Create > [`create.php`](create.php): > Create a new backup - Request: `GET/POST` - Arguments - `<key: string>`: Access key - `[info: string(JSON object)]`: The basic information of the backup(JSON) - `[totalFiles: int]`: The number of the files you will upload If this is `0` or not set, you must request [`Finish`](#Finish) after uploading - `[others: object]`: Other things you want to store on the server - Response `JSON` - `<id: string>`: The ID of the new backup. You must use this ID to [`Upload`](#Upload) & [`Finish`](#Finish) - `<timeStamp: int>`: The creation time of the new backup - `<success: bool>`: Whether the request is successful - `[reason: string]`: If `success` is `false`, this will save the reason of the error **Example**: ``` Request[GET]: create.php?key=2333&info={"totalFiles":10,"others":{"name":"test"}} Response: {"success":true,"id":"2022012421_42604b","timeStamp":1643029329} ``` ### Upload > [`upload.php`](upload.php): > Upload a file to the backup - Request: `POST` - Arguments - `<key: string>`: Access key - `<id: string>`: The ID of the backup - `<file: object>`: The file you want to upload - Response `JSON` - `<id: string>`: The ID of the backup - `<uploadedFiles: int>`: The number of the uploaded files - `[totalFiles: int]`: The number of the files you will upload - `[done: bool]`: - `<success: bool>`: Whether the request is successful - `[reason: bool]`: If `success` is `false`, this will save the reason of the error **Example**: ``` Request[POST]: upload.php {{"key", "2333"}, {"id", "2022012421_42604b"}, {"file", "content", "test.txt", "text/plain"}} Response[1]: {"success":true,"id":"2022012421_42604b","uploadedFiles":1,"totalFiles":10,"done":false} Response[2]: {"success":true,"id":"2022012421_42604b","uploadedFiles":2} ``` ### Finish > [`finish.php`](finish.php): > Finish uploading a backup - Request: `GET/POST` - Arguments - `<key: string>`: Access key - `<id: string>`: The ID of the backup - Response `JSON` - `<id: string>`: The ID of the backup - `<size: int>`: The size of the backup(bytes) - `<uploadedFiles: int>`: The number of the uploaded files - `<success: bool>`: Whether the request is successful - `[reason: string]`: If `success` is `false`, this will save the reason of the error **Example**: ``` Request[GET]: finish.php?key=2333&id=2022012421_42604b Response: {"success":true,"id":"2022012421_42604b","size":114514,"uploadedFiles":10} ``` **Note**: [`$timeLimit`](config.php#L10) [`$deleteAfterTimeLimitExceeded`](config.php#L13) ### Query > [`query.php`](query.php): > Query the information of a backup - Request: `GET/POST` - Arguments - `<key: string>`: Access key - `[id: string]`: The ID of the backup - Response `JSON` - `[backup: object]`: The backup information - `[list: array]`: The list of all the backups - `[count: int]`: The number of the backups - `<success: bool>`: Whether the request is successful - `[reason: string]`: If `success` is `false`, this will save the reason of the error **Example**: ``` Request[GET][1]: query.php?key=2333 Response[1]: {"success":true,"count":1,"list":[{"id":"2022012421_42604b","timeStamp":1643030721,"others":null,"totalFiles":3,"isUploading":false}]} Request[GET][2]: query.php?key=2333&id=2022012421_42604b Response[2]: {"success":true,"backup":{"id":"2022012421_42604b","timeStamp":1643030721,"others":null,"totalFiles":3,"isUploading":false,"files":["qwd.log","wow/test.txt","wow/woc/114514.txt"]}} ``` ### Delete > [`delete.php`](delete.php): > Delete a backup - Request: `GET/POST` - Arguments - `<key: string>`: Access key - `<id: string>`: The ID of the backup - Response `JSON` - `<id: string>`: The ID of the backup - `<success: bool>`: Whether the request is successful - `[reason: string]`: If `success` is `false`, this will save the reason of the error **Example**: ``` Request[GET]: delete.php?key=2333&id=2022012421_42604b Response: {"success":true,"id":"2022012421_42604b"} ``` ### Download > [`download.php`](download.php): > Download a file of the backup - Request: `GET/POST` - Arguments - `<key: string>`: Access key - `<id: string>`: The ID of the backup - `<file: string>`: The name of the file - Response[1] `octet-stream`: The file - Response[2] `JSON`: - `<success: bool>`: Always `false` - `<reason: string>`: The reason of the error **Example**: ``` Request[GET]: download.php?key=2333&id=2022012421_42604b&file=qwd.log Response: {FILE CONTENT} ``` **Note**: You can get the filename by [`Query`](#Query) ### DownloadZip > [`downloadZip.php`](downloadZip.php): > Download the backup as a zip file - Request: `GET/POST` - Arguments - `<key: string>`: Access key - `<id: string>`: The ID of the backup - Response[1] `zip`: The zip file - Response[2] `JSON`: - `<success: bool>`: Always `false` - `<reason: string>`: The reason of the error **Example**: ``` Request[GET]: downloadZip.php?key=2333&id=2022012421_42604b Response: {FILE CONTENT} ``` ### Info > [`info.php`](info.php): > Get the information of APIs - Request: `GET/POST` - Arguments: None - Response `JSON`: - `<success: bool>`: Always `true` - `<apiVersion: string>`: The API version **Example**: ``` Request[GET]: info.php Response: {"success":true,"apiVersion":"0.1.0"} ``` [/MD]
作者
Jasonzyt
价格
50.00金粒
下载
3
查看
1,236
首次发布
最后更新

评分

0.00 星 0 次评分
后退
顶部 底部