| /* |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You 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 ( |
| "github.com/apache/incubator-devlake/core/errors" |
| "github.com/apache/incubator-devlake/core/models/domainlayer/crossdomain" |
| "github.com/apache/incubator-devlake/core/plugin" |
| "net/http" |
| |
| "github.com/gocarina/gocsv" |
| ) |
| |
| // GetTeam returns all team in csv format |
| // @Summary Get teams.csv file |
| // @Description get teams.csv file |
| // @Tags plugins/org |
| // @Produce text/csv |
| // @Param fake_data query bool false "return fake data or not" |
| // @Success 200 |
| // @Failure 400 {object} shared.ApiBody "Bad Request" |
| // @Failure 500 {object} shared.ApiBody "Internal Error" |
| // @Router /plugins/org/teams.csv [get] |
| func (h *Handlers) GetTeam(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| input.Query.Get("fake_data") |
| var teams []team |
| var t *team |
| var err errors.Error |
| if input.Query.Get("fake_data") == "true" { |
| teams = t.fakeData() |
| } else { |
| teams, err = h.store.findAllTeams() |
| if err != nil { |
| return nil, err |
| } |
| } |
| blob, err := errors.Convert01(gocsv.MarshalBytes(teams)) |
| if err != nil { |
| return nil, err |
| } |
| return &plugin.ApiResourceOutput{ |
| Body: nil, |
| Status: http.StatusOK, |
| File: &plugin.OutputFile{ |
| ContentType: "text/csv", |
| Data: blob, |
| }, |
| }, nil |
| } |
| |
| // CreateTeam accepts a CSV file containing team information and saves it to the database |
| // @Summary Upload teams.csv file |
| // @Description upload teams.csv file |
| // @Tags plugins/org |
| // @Accept multipart/form-data |
| // @Param file formData file true "select file to upload" |
| // @Produce json |
| // @Success 200 |
| // @Failure 400 {object} shared.ApiBody "Bad Request" |
| // @Failure 500 {object} shared.ApiBody "Internal Error" |
| // @Router /plugins/org/teams.csv [put] |
| func (h *Handlers) CreateTeam(input *plugin.ApiResourceInput) (*plugin.ApiResourceOutput, errors.Error) { |
| var tt []team |
| err := h.unmarshal(input.Request, &tt) |
| if err != nil { |
| return nil, err |
| } |
| var items []interface{} |
| for _, tm := range (&team{}).toDomainLayer(tt) { |
| items = append(items, tm) |
| } |
| err = h.store.deleteAll(&crossdomain.Team{}) |
| if err != nil { |
| return nil, err |
| } |
| err = h.store.save(items) |
| if err != nil { |
| return nil, err |
| } |
| return &plugin.ApiResourceOutput{Status: http.StatusOK}, nil |
| } |