mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
83 lines
1.9 KiB
Go
83 lines
1.9 KiB
Go
package routes
|
|
|
|
import (
|
|
"crawlab/model"
|
|
"crawlab/services"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/globalsign/mgo/bson"
|
|
"net/http"
|
|
)
|
|
|
|
func GetGitRemoteBranches(c *gin.Context) {
|
|
url := c.Query("url")
|
|
branches, err := services.GetGitRemoteBranchesPlain(url)
|
|
if err != nil {
|
|
HandleError(http.StatusInternalServerError, c, err)
|
|
return
|
|
}
|
|
c.JSON(http.StatusOK, Response{
|
|
Status: "ok",
|
|
Message: "success",
|
|
Data: branches,
|
|
})
|
|
}
|
|
|
|
func GetGitSshPublicKey(c *gin.Context) {
|
|
content := services.GetGitSshPublicKey()
|
|
c.JSON(http.StatusOK, Response{
|
|
Status: "ok",
|
|
Message: "success",
|
|
Data: content,
|
|
})
|
|
}
|
|
|
|
func GetGitCommits(c *gin.Context) {
|
|
spiderId := c.Query("spider_id")
|
|
if spiderId == "" || !bson.IsObjectIdHex(spiderId) {
|
|
HandleErrorF(http.StatusInternalServerError, c, "invalid request")
|
|
return
|
|
}
|
|
spider, err := model.GetSpider(bson.ObjectIdHex(spiderId))
|
|
if err != nil {
|
|
HandleError(http.StatusInternalServerError, c, err)
|
|
return
|
|
}
|
|
commits, err := services.GetGitCommits(spider)
|
|
if err != nil {
|
|
HandleError(http.StatusInternalServerError, c, err)
|
|
return
|
|
}
|
|
c.JSON(http.StatusOK, Response{
|
|
Status: "ok",
|
|
Message: "success",
|
|
Data: commits,
|
|
})
|
|
}
|
|
|
|
func PostGitCheckout(c *gin.Context) {
|
|
type ReqBody struct {
|
|
SpiderId string `json:"spider_id"`
|
|
Hash string `json:"hash"`
|
|
}
|
|
var reqBody ReqBody
|
|
if err := c.ShouldBindJSON(&reqBody); err != nil {
|
|
}
|
|
if reqBody.SpiderId == "" || !bson.IsObjectIdHex(reqBody.SpiderId) {
|
|
HandleErrorF(http.StatusInternalServerError, c, "invalid request")
|
|
return
|
|
}
|
|
spider, err := model.GetSpider(bson.ObjectIdHex(reqBody.SpiderId))
|
|
if err != nil {
|
|
HandleError(http.StatusInternalServerError, c, err)
|
|
return
|
|
}
|
|
if err := services.GitCheckout(spider, reqBody.Hash); err != nil {
|
|
HandleError(http.StatusInternalServerError, c, err)
|
|
return
|
|
}
|
|
c.JSON(http.StatusOK, Response{
|
|
Status: "ok",
|
|
Message: "success",
|
|
})
|
|
}
|