/* Copyright (c) 2016 VMware, Inc. All Rights Reserved. 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 http://www.apache.org/licenses/LICENSE-2.0 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 import ( "encoding/json" "net/http" "strconv" "strings" "time" "github.com/vmware/harbor/dao" "github.com/vmware/harbor/models" svc_utils "github.com/vmware/harbor/service/utils" "github.com/astaxie/beego" ) // RepositoryAPI handles request to /api/repositories /api/repositories/tags /api/repositories/manifests, the parm has to be put // in the query string as the web framework can not parse the URL if it contains veriadic sectors. // For repostiories, we won't check the session in this API due to search functionality, querying manifest will be contorlled by // the security of registry type RepositoryAPI struct { BaseAPI userID int username string } // Prepare will set a non existent user ID in case the request tries to view repositories under a project he doesn't has permission. func (ra *RepositoryAPI) Prepare() { userID, ok := ra.GetSession("userId").(int) if !ok { ra.userID = dao.NonExistUserID } else { ra.userID = userID } username, ok := ra.GetSession("username").(string) if !ok { beego.Warning("failed to get username from session") ra.username = "" } else { ra.username = username } } // Get ... func (ra *RepositoryAPI) Get() { projectID, err0 := ra.GetInt64("project_id") if err0 != nil { beego.Error("Failed to get project id, error:", err0) ra.RenderError(http.StatusBadRequest, "Invalid project id") return } p, err := dao.GetProjectByID(projectID) if err != nil { beego.Error("Error occurred in GetProjectById:", err) ra.CustomAbort(http.StatusInternalServerError, "Internal error.") } if p == nil { beego.Warning("Project with Id:", projectID, ", does not exist") ra.RenderError(http.StatusNotFound, "") return } if p.Public == 0 && !checkProjectPermission(ra.userID, projectID) { ra.RenderError(http.StatusForbidden, "") return } repoList, err := svc_utils.GetRepoFromCache() if err != nil { beego.Error("Failed to get repo from cache, error:", err) ra.RenderError(http.StatusInternalServerError, "internal sever error") } projectName := p.Name q := ra.GetString("q") var resp []string if len(q) > 0 { for _, r := range repoList { if strings.Contains(r, "/") && strings.Contains(r[strings.LastIndex(r, "/")+1:], q) && r[0:strings.LastIndex(r, "/")] == projectName { resp = append(resp, r) } } ra.Data["json"] = resp } else if len(projectName) > 0 { for _, r := range repoList { if strings.Contains(r, "/") && r[0:strings.LastIndex(r, "/")] == projectName { resp = append(resp, r) } } ra.Data["json"] = resp } else { ra.Data["json"] = repoList } ra.ServeJSON() } type tag struct { Name string `json:"name"` Tags []string `json:"tags"` } type histroyItem struct { V1Compatibility string `json:"v1Compatibility"` } type manifest struct { Name string `json:"name"` Tag string `json:"tag"` Architecture string `json:"architecture"` SchemaVersion int `json:"schemaVersion"` History []histroyItem `json:"history"` } // GetTags handles GET /api/repositories/tags func (ra *RepositoryAPI) GetTags() { var tags []string repoName := ra.GetString("repo_name") result, err := svc_utils.RegistryAPIGet(svc_utils.BuildRegistryURL(repoName, "tags", "list"), ra.username) if err != nil { beego.Error("Failed to get repo tags, repo name:", repoName, ", error: ", err) ra.RenderError(http.StatusInternalServerError, "Failed to get repo tags") } else { t := tag{} json.Unmarshal(result, &t) tags = t.Tags } ra.Data["json"] = tags ra.ServeJSON() } // GetManifests handles GET /api/repositories/manifests func (ra *RepositoryAPI) GetManifests() { repoName := ra.GetString("repo_name") tag := ra.GetString("tag") item := models.RepoItem{} result, err := svc_utils.RegistryAPIGet(svc_utils.BuildRegistryURL(repoName, "manifests", tag), ra.username) if err != nil { beego.Error("Failed to get manifests for repo, repo name:", repoName, ", tag:", tag, ", error:", err) ra.RenderError(http.StatusInternalServerError, "Internal Server Error") return } mani := manifest{} err = json.Unmarshal(result, &mani) if err != nil { beego.Error("Failed to decode json from response for manifests, repo name:", repoName, ", tag:", tag, ", error:", err) ra.RenderError(http.StatusInternalServerError, "Internal Server Error") return } v1Compatibility := mani.History[0].V1Compatibility err = json.Unmarshal([]byte(v1Compatibility), &item) if err != nil { beego.Error("Failed to decode V1 field for repo, repo name:", repoName, ", tag:", tag, ", error:", err) ra.RenderError(http.StatusInternalServerError, "Internal Server Error") return } item.CreatedStr = item.Created.Format("2006-01-02 15:04:05") item.DurationDays = strconv.Itoa(int(time.Since(item.Created).Hours()/24)) + " days" ra.Data["json"] = item ra.ServeJSON() }