services

package
v1.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 4, 2015 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Overview

walter: a deployment pipeline template
* Copyright (C) 2014 Recruit Technologies Co., Ltd. and contributors
* (see CONTRIBUTORS.md)
*
* 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.

walter: a deployment pipeline template

* Copyright (C) 2014 Recruit Technologies Co., Ltd. and contributors * (see CONTRIBUTORS.md) * * 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.

walter: a deployment pipeline template
* Copyright (C) 2014 Recruit Technologies Co., Ltd. and contributors
* (see CONTRIBUTORS.md)
*
* 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.

Index

Constants

View Source
const DEFAULT_UPDATE_FILE_NAME string = ".walter"

DEFAULT_UPDATE_FILE_NAME is the default file name of status of Walter service. The file name can be overridden with the configuration file.

Variables

This section is empty.

Functions

func SaveLastUpdate

func SaveLastUpdate(fname string, update Update) bool

Types

type GitHubClient

type GitHubClient struct {
	Repo         string `config:"repo"`
	From         string `config:"from"`
	Token        string `config:"token"`
	UpdateFile   string `config:"update"`
	TargetBranch string `config:"branch"`
}

func (*GitHubClient) GetCommits

func (self *GitHubClient) GetCommits(update Update) (*list.List, error)

func (*GitHubClient) GetUpdateFilePath

func (self *GitHubClient) GetUpdateFilePath() string

func (*GitHubClient) RegisterResult

func (self *GitHubClient) RegisterResult(result Result) error

type LocalClient

type LocalClient struct{}

func (*LocalClient) GetCommits

func (self *LocalClient) GetCommits(update Update) (*list.List, error)

func (*LocalClient) GetUpdateFilePath

func (self *LocalClient) GetUpdateFilePath() string

func (*LocalClient) RegisterResult

func (self *LocalClient) RegisterResult(result Result) error

type Result

type Result struct {
	State   string
	SHA     string
	Message string
}

type Service

type Service interface {
	RegisterResult(Result) error
	GetCommits(update Update) (*list.List, error)
	GetUpdateFilePath() string
}

func InitService

func InitService(stype string) (Service, error)

type Update

type Update struct {
	Time      time.Time `json:"time"`
	Succeeded bool      `json:"succeeded"`
	Status    string    `json:"status"`
}

func LoadLastUpdate

func LoadLastUpdate(fname string) (Update, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL