You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
395 B
18 lines
395 B
5 years ago
|
package controllers
|
||
|
|
||
|
import (
|
||
|
"github.com/HFO4/cloudreve/service/callback"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
// RemoteCallback 远程上传回调
|
||
|
func RemoteCallback(c *gin.Context) {
|
||
|
var callbackBody callback.RemoteUploadCallbackService
|
||
|
if err := c.ShouldBindJSON(&callbackBody); err == nil {
|
||
|
res := callbackBody.Process(c)
|
||
|
c.JSON(200, res)
|
||
|
} else {
|
||
|
c.JSON(200, ErrorResponse(err))
|
||
|
}
|
||
|
}
|