woodpecker/server/api/file.go

115 lines
2.5 KiB
Go
Raw Normal View History

2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package api
2017-07-27 17:06:24 +00:00
import (
"io"
"net/http"
"strconv"
"strings"
2019-09-14 12:21:16 +00:00
"github.com/gin-gonic/gin"
"github.com/woodpecker-ci/woodpecker/server/router/middleware/session"
"github.com/woodpecker-ci/woodpecker/server/store"
2017-07-27 17:06:24 +00:00
)
// FileList gets a list file by build.
func FileList(c *gin.Context) {
store_ := store.FromContext(c)
2017-07-27 17:06:24 +00:00
num, err := strconv.Atoi(c.Param("number"))
if err != nil {
c.AbortWithError(http.StatusBadRequest, err)
return
}
repo := session.Repo(c)
build, err := store_.GetBuildNumber(repo, num)
2017-07-27 17:06:24 +00:00
if err != nil {
c.AbortWithError(http.StatusInternalServerError, err)
return
}
files, err := store_.FileList(build)
2017-07-27 17:06:24 +00:00
if err != nil {
c.AbortWithError(http.StatusInternalServerError, err)
return
}
c.JSON(200, files)
}
// FileGet gets a file by process and name
func FileGet(c *gin.Context) {
var (
store_ = store.FromContext(c)
2017-07-27 17:06:24 +00:00
repo = session.Repo(c)
name = strings.TrimPrefix(c.Param("file"), "/")
raw = func() bool {
return c.DefaultQuery("raw", "false") == "true"
}()
)
num, err := strconv.Atoi(c.Param("number"))
if err != nil {
c.AbortWithError(http.StatusBadRequest, err)
return
}
pid, err := strconv.Atoi(c.Param("proc"))
if err != nil {
c.AbortWithError(http.StatusBadRequest, err)
return
}
build, err := store_.GetBuildNumber(repo, num)
2017-07-27 17:06:24 +00:00
if err != nil {
c.AbortWithError(http.StatusInternalServerError, err)
return
}
proc, err := store_.ProcFind(build, pid)
2017-07-27 17:06:24 +00:00
if err != nil {
c.AbortWithError(http.StatusInternalServerError, err)
return
}
file, err := store_.FileFind(proc, name)
2017-07-27 17:06:24 +00:00
if err != nil {
c.String(404, "Error getting file %q. %s", name, err)
return
}
if !raw {
c.JSON(200, file)
return
}
rc, err := store_.FileRead(proc, file.Name)
2017-07-27 17:06:24 +00:00
if err != nil {
c.String(404, "Error getting file stream %q. %s", name, err)
return
}
defer rc.Close()
switch file.Mime {
case "application/vnd.test+json":
2017-07-27 17:06:24 +00:00
c.Header("Content-Type", "application/json")
}
io.Copy(c.Writer, rc)
}