df2da1c646
* refactor create / find / delete end points for cards
94 lines
2.4 KiB
Go
94 lines
2.4 KiB
Go
// Copyright 2019 Drone IO, Inc.
|
|
//
|
|
// 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 step
|
|
|
|
import (
|
|
"database/sql"
|
|
"encoding/json"
|
|
|
|
"github.com/drone/drone/core"
|
|
"github.com/drone/drone/store/shared/db"
|
|
|
|
"github.com/jmoiron/sqlx/types"
|
|
)
|
|
|
|
// helper function converts the Step structure to a set
|
|
// of named query parameters.
|
|
func toParams(from *core.Step) map[string]interface{} {
|
|
return map[string]interface{}{
|
|
"step_id": from.ID,
|
|
"step_stage_id": from.StageID,
|
|
"step_number": from.Number,
|
|
"step_name": from.Name,
|
|
"step_status": from.Status,
|
|
"step_error": from.Error,
|
|
"step_errignore": from.ErrIgnore,
|
|
"step_exit_code": from.ExitCode,
|
|
"step_started": from.Started,
|
|
"step_stopped": from.Stopped,
|
|
"step_version": from.Version,
|
|
"step_depends_on": encodeSlice(from.DependsOn),
|
|
"step_image": from.Image,
|
|
"step_detached": from.Detached,
|
|
"step_schema": from.Schema,
|
|
}
|
|
}
|
|
|
|
func encodeSlice(v []string) types.JSONText {
|
|
raw, _ := json.Marshal(v)
|
|
return types.JSONText(raw)
|
|
}
|
|
|
|
// helper function scans the sql.Row and copies the column
|
|
// values to the destination object.
|
|
func scanRow(scanner db.Scanner, dest *core.Step) error {
|
|
depJSON := types.JSONText{}
|
|
err := scanner.Scan(
|
|
&dest.ID,
|
|
&dest.StageID,
|
|
&dest.Number,
|
|
&dest.Name,
|
|
&dest.Status,
|
|
&dest.Error,
|
|
&dest.ErrIgnore,
|
|
&dest.ExitCode,
|
|
&dest.Started,
|
|
&dest.Stopped,
|
|
&dest.Version,
|
|
&depJSON,
|
|
&dest.Image,
|
|
&dest.Detached,
|
|
&dest.Schema,
|
|
)
|
|
json.Unmarshal(depJSON, &dest.DependsOn)
|
|
return err
|
|
}
|
|
|
|
// helper function scans the sql.Row and copies the column
|
|
// values to the destination object.
|
|
func scanRows(rows *sql.Rows) ([]*core.Step, error) {
|
|
defer rows.Close()
|
|
|
|
steps := []*core.Step{}
|
|
for rows.Next() {
|
|
step := new(core.Step)
|
|
err := scanRow(rows, step)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
steps = append(steps, step)
|
|
}
|
|
return steps, nil
|
|
}
|