2019-10-07 18:21:26 +05:00
|
|
|
package serverv1
|
|
|
|
|
|
|
|
import (
|
|
|
|
// stdlib
|
|
|
|
"net/http"
|
2019-10-07 20:39:11 +05:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
// local
|
2019-10-13 15:12:54 +05:00
|
|
|
"go.dev.pztrn.name/giredore/internal/configuration"
|
|
|
|
"go.dev.pztrn.name/giredore/internal/structs"
|
2019-10-07 18:21:26 +05:00
|
|
|
|
|
|
|
// other
|
|
|
|
"github.com/labstack/echo"
|
|
|
|
)
|
|
|
|
|
|
|
|
func throwGoImports(ec echo.Context) error {
|
2019-10-07 20:39:11 +05:00
|
|
|
// Getting real path. This might be the package itself, or namespace
|
|
|
|
// to list available packages.
|
|
|
|
// For now only package itself is supported, all other features in ToDo.
|
|
|
|
packageNameRaw := ec.Request().URL.Path
|
2019-10-16 23:32:21 +05:00
|
|
|
|
2019-10-07 20:39:11 +05:00
|
|
|
pkgs, errs := configuration.Cfg.GetPackagesInfo([]string{packageNameRaw})
|
2019-10-16 23:32:21 +05:00
|
|
|
|
2019-10-07 20:39:11 +05:00
|
|
|
if errs != nil {
|
|
|
|
log.Error().Str("package", packageNameRaw).Msgf("Failed to get package information: %+v", errs)
|
|
|
|
return ec.JSON(http.StatusBadRequest, &structs.Reply{Status: structs.StatusFailure, Errors: errs})
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(pkgs) == 0 {
|
|
|
|
return ec.JSON(http.StatusBadRequest, &structs.Reply{Status: structs.StatusFailure, Errors: []structs.Error{structs.ErrNoPackagesFound}})
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg, found := pkgs[packageNameRaw]
|
|
|
|
if !found {
|
|
|
|
return ec.JSON(http.StatusBadRequest, &structs.Reply{Status: structs.StatusFailure, Errors: []structs.Error{structs.ErrNoPackagesFound}})
|
|
|
|
}
|
|
|
|
|
|
|
|
// We should compose package name using our domain under which giredore
|
|
|
|
// is working.
|
|
|
|
domain := ec.Request().Host
|
|
|
|
packageName := domain + packageNameRaw
|
|
|
|
|
|
|
|
tmpl := singlePackageTemplate
|
|
|
|
tmpl = strings.Replace(tmpl, "{PKGNAME}", packageName, -1)
|
|
|
|
tmpl = strings.Replace(tmpl, "{VCS}", pkg.VCS, 1)
|
|
|
|
tmpl = strings.Replace(tmpl, "{REPOPATH}", pkg.RealPath, 1)
|
|
|
|
|
|
|
|
return ec.HTML(http.StatusOK, tmpl)
|
2019-10-07 18:21:26 +05:00
|
|
|
}
|