pezdispenser

package
v0.0.54 Latest Latest
Warning

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

Go to latest
Published: Aug 24, 2015 License: Apache-2.0, GPL-2.0 Imports: 17 Imported by: 0

Documentation

Index

Constants

View Source
const (
	//TaskStatusAvailable - this means the task is in an avaiable state
	TaskStatusAvailable = "available"
	//TaskStatusUnavailable - unavailable procurement request
	TaskStatusUnavailable = "unavailable"
	//TaskStatusStarted - started this task
	TaskStatusStarted = "started"
	//TaskStatusProcurement - task is now in procurement
	TaskStatusProcurement = "in_procurement"
	//TaskCollectionName - collection name for tasks
	TaskCollectionName = "dispenser_tasks"
	//SuccessStatusResponseTaskByID - success statuscode for gettaskbyidcontroller
	SuccessStatusResponseTaskByID = 200
	//FailureStatusResponseTaskByID - failure statuscode for gettaskbyidcontroller
	FailureStatusResponseTaskByID = 404
	Sku2cSmall                    = "2c.small"
)
View Source
const (
	//APIVersion1 - version 1 const
	APIVersion1 = "v1"
)

Variables

View Source
var (
	//ErrNoMatchInStore - error when there is no matching org in the datastore
	ErrNoMatchInStore = errors.New("Could not find a matching user org or connection failure")
	//ErrCanNotAddOrgRec - error when we can not add a new org record to the datastore
	ErrCanNotAddOrgRec = errors.New("Could not add a new org record")
	//ErrEmptyBody - no data in request body
	ErrEmptyBody = errors.New("request body is empty or invalid")
)
View Source
var (
	//URLBaseV1 - v1 url path base
	URLBaseV1 = fmt.Sprintf("/%s", APIVersion1)
)

Functions

func GetInfoController added in v0.0.48

func GetInfoController() martini.Handler

GetInfoController - this is the controller to handle a info call to the api

func GetTaskByIDController added in v0.0.49

func GetTaskByIDController(taskServiceURI string, collectionDialer integrations.CollectionDialer) martini.Handler

GetTaskByIDController - this is the controller to handle a get task call

func InitRoutes

func InitRoutes(m *martini.ClassicMartini, keyCheckHandler martini.Handler, appEnv *cfenv.App)

InitRoutes - initialize the mappings for controllers against valid routes

func ParseURL added in v0.0.49

func ParseURL(url string) (*mgo.DialInfo, error)

ParseURL - copy from latest version of mgo, but there was a version conflict, need to figure that out

func PostLeaseController added in v0.0.52

func PostLeaseController(taskServiceURI string, collectionDialer integrations.CollectionDialer) martini.Handler

PostLeaseController - this is the controller to handle a get task call

Types

type Lease added in v0.0.52

type Lease struct {
	ID              string                 `json:"_id"`
	InventoryID     string                 `json:"inventory_id"`
	UserName        string                 `json:"username"`
	Sku             string                 `json:"sku"`
	LeaseDuration   float64                `json:"lease_duration"`
	LeaseEndDate    time.Time              `json:"lease_end_date"`
	LeaseStartDate  time.Time              `json:"lease_start_date"`
	Credentials     map[string]interface{} `json:"credentials"`
	ProcurementMeta map[string]interface{} `json:"procurement_meta"`
	Task            *Task                  `json:"task"`
	// contains filtered or unexported fields
}

Lease - this represents a lease object

func NewLease added in v0.0.52

func NewLease(taskCollection integrations.Collection) *Lease

func (*Lease) InitFromHTTPRequest added in v0.0.52

func (s *Lease) InitFromHTTPRequest(req *http.Request) (err error)

InitFromHTTPRequest - initialize a lease from the http request object body

func (*Lease) InventoryAvailable added in v0.0.54

func (s *Lease) InventoryAvailable() (available bool)

InventoryAvailable - lets check if a inventory management task exists for this inventory item. if one does not let's created it, if it does exist lets check its Status to see if we it available or not, return true or false on outcome

func (*Lease) Post added in v0.0.52

func (s *Lease) Post(logger *log.Logger, req *http.Request) (statusCode int, response interface{})

Post - handle a post lease call

func (*Lease) Procurement added in v0.0.52

func (s *Lease) Procurement()

Procurement - method to issue a procurement request for the given lease item.

func (*Lease) ReStock added in v0.0.52

func (s *Lease) ReStock()

ReStock - this will reclaim resources for a given lease

func (*Lease) SetTask added in v0.0.52

func (s *Lease) SetTask(task *Task)

SetTask - add a task to the lease object

type MongoCollection added in v0.0.23

type MongoCollection interface {
	Remove(selector interface{}) error
	Find(query interface{}) *mgo.Query
	Upsert(selector interface{}, update interface{}) (info *mgo.ChangeInfo, err error)
}

MongoCollection - interface to a collection in mongo

type MongoCollectionGetter added in v0.0.23

type MongoCollectionGetter interface {
	Collection() Persistence
}

MongoCollectionGetter - Getting collections in mongo

type MongoCollectionWrapper added in v0.0.23

type MongoCollectionWrapper struct {
	Persistence
	// contains filtered or unexported fields
}

MongoCollectionWrapper - interface to wrap mongo collections with additional persistence functions

func (*MongoCollectionWrapper) FindOne added in v0.0.23

func (s *MongoCollectionWrapper) FindOne(query interface{}, result interface{}) (err error)

FindOne - combining the Find and One calls of a Mongo collection object

func (*MongoCollectionWrapper) Remove added in v0.0.23

func (s *MongoCollectionWrapper) Remove(selector interface{}) error

Remove - removes the matching selector from collection

func (*MongoCollectionWrapper) Upsert added in v0.0.23

func (s *MongoCollectionWrapper) Upsert(selector interface{}, update interface{}) (err error)

Upsert - allow us to call upsert on Mongo collection object

type Persistence added in v0.0.23

type Persistence interface {
	Remove(selector interface{}) error
	FindOne(query interface{}, result interface{}) (err error)
	Upsert(selector interface{}, update interface{}) (err error)
}

Persistence - interface to a persistence store of some kind

func NewMongoCollectionWrapper added in v0.0.23

func NewMongoCollectionWrapper(c MongoCollection) Persistence

NewMongoCollectionWrapper - wraps a Mongo collection in as a Peristence interface implementation

type Task added in v0.0.49

type Task struct {
	ID        bson.ObjectId          `bson:"_id"`
	Timestamp time.Time              `bson:"timestamp"`
	Status    string                 `bson:"status"`
	MetaData  map[string]interface{} `bson:"metadata"`
}

Task - a task object

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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