Documentation ¶
Index ¶
- func C(m Model) string
- func Compose(chain ...interface{}) http.Handler
- func Fatal(err error) error
- func Validate(m Model) error
- type Action
- type Base
- type Callback
- func Combine(callbacks ...Callback) Callback
- func DependentResourcesValidator(resources map[string]string) Callback
- func Except(callback Callback, actions ...Action) Callback
- func MatchingReferencesValidator(collection, reference string, matcher map[string]string) Callback
- func ModelValidator() Callback
- func Only(callback Callback, actions ...Action) Callback
- func ProtectedAttributesValidator(attributes map[string]interface{}) Callback
- func VerifyReferencesValidator(references map[string]string) Callback
- type Context
- type Controller
- type Field
- type Group
- type HasMany
- type Meta
- type Model
- type Store
- type ValidatableModel
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Compose ¶ added in v0.2.0
Compose is a short-hand for chaining the specified middlewares and handler together.
Types ¶
type Action ¶ added in v0.2.0
type Action int
An Action describes the currently called action on the API.
const ( List Action Find Create Update Delete )
All the available actions.
type Base ¶ added in v0.2.0
type Base struct { DocID bson.ObjectId `json:"-" bson:"_id,omitempty"` // contains filtered or unexported fields }
Base is the base for every fire model.
func (*Base) MustGet ¶ added in v0.2.0
MustGet returns the value of the given field.
Note: MustGet will return the value of the first field that has a matching Name, JSONName, or BSONName and will panic if no field can be found.
func (*Base) MustSet ¶ added in v0.2.0
MustSet will set the given field to the the passed valued.
Note: MustSet will set the value of the first field that has a matching Name, JSONName, or BSONName and will panic if no field can been found. The method will also panic if the type of the field and the passed value do not match.
type Callback ¶ added in v0.2.0
A Callback can be an Authorizer or Validator and is called during execution of a controller.
Note: If the callback returns an error wrapped using Fatal() the API returns an InternalServerError status and the error will be logged. All other errors are serialized to an error object and returned.
func Combine ¶ added in v0.2.0
Combine combines multiple callbacks to one.
Note: Execution will be stopped if a callback returns and error.
func DependentResourcesValidator ¶ added in v0.2.0
DependentResourcesValidator counts documents in the supplied collections and returns an error if some get found. This callback is meant to protect resources from breaking relations when requested to be deleted.
Resources are defined by passing pairs of collections and fields where the field must be a database field of the target resource model:
DependentResourcesValidator(fire.Map{ "posts": "user_id", "comments": "user_id", })
func Except ¶ added in v0.2.1
Except will return a callback that runs the specified callback only when none of the supplied actions match.
func MatchingReferencesValidator ¶ added in v0.2.0
MatchingReferencesValidator compares the model with a related model and checks if certain references are shared.
The target model is defined by passing its collection and the referencing field on the current model. The matcher is defined by passing pairs of database fields on the target and current model:
MatchingReferencesValidator("posts", "post_id", fire.Map{ "user_id": "user_id", })
func ModelValidator ¶ added in v0.2.0
func ModelValidator() Callback
ModelValidator performs a validation of the model using the Validate function.
func Only ¶ added in v0.2.1
Only will return a callback that runs the specified callback only when one of the supplied actions match.
func ProtectedAttributesValidator ¶ added in v0.2.0
ProtectedAttributesValidator compares protected attributes against their default (during Create) or stored value (during Update) and returns and error if they have been changed.
Attributes are defined by passing pairs of fields and default values:
ProtectedAttributesValidator(fire.Map{ "title": "A fixed title", })
func VerifyReferencesValidator ¶ added in v0.2.0
VerifyReferencesValidator makes sure all references in the document are existing by counting on the related collections.
References are defined by passing pairs of fields and collections where the field must be a database field on the resource model:
VerifyReferencesValidator(fire.Map{ "post_id": "posts", "user_id": "users", })
type Context ¶ added in v0.2.0
type Context struct { // The current action in process. Action Action // The query that will be used during FindAll, FindOne, Update or Delete. // On FindOne, Update and Delete, the "_id" key is preset to the document ID. // On FindAll all field filters and relationship filters are preset. Query bson.M // The Model that will be saved during Create or Update. Model Model // The sorting that will be used during FindAll. Sorting []string // The store that is used to retrieve and persist the model. Store *Store // The underlying JSON API request. JSONAPIRequest *jsonapi.Request // The underlying HTTP request. HTTPRequest *http.Request // contains filtered or unexported fields }
A Context provides useful contextual information.
func (*Context) Original ¶ added in v0.2.0
Original will return the stored version of the model. This method is intended to be used to calculate the changed fields during an Update action. Any returned error is already marked as fatal.
Note: The method will panic if being used during any other action than Update.
type Controller ¶ added in v0.2.0
type Controller struct { // The model that this controller should provide (e.g. &Foo{}). Model Model // Filters defines the attributes that are filterable. Filters []string // Sorters defines the attributes that are sortable. Sorters []string // The store that is used to retrieve and persist the model. Store *Store // The Authorizer is run on all actions. Will return an Unauthorized status // if an user error is returned. Authorizer Callback // The Validator is run to validate Create, Update and Delete actions. Will // return a Bad Request status if an user error is returned. Validator Callback // The NoList property can be set to true if the resource is only listed // through relationships from other resources. This is useful for // resources like comments that should never listed without a relationship. NoList bool // The ListLimit can be set to a value higher than 1 to enforce paginated // responses and restrain the page size to be within one and the limit. ListLimit int // The Reporter callback is called with every unexpected error. Reporter func(err error) }
A Controller provides a JSON API based interface to a model.
Note: Controllers must not be modified after adding to an application.
type Field ¶ added in v0.2.0
type Field struct { Name string Type reflect.Type Kind reflect.Kind JSONName string BSONName string Optional bool ToOne bool ToMany bool HasMany bool RelName string RelType string RelInverse string // contains filtered or unexported fields }
A Field contains the meta information about a single field of a model.
type Group ¶ added in v0.2.0
type Group struct {
// contains filtered or unexported fields
}
A Group manages access to multiple controllers and their interconnections.
func (*Group) Add ¶ added in v0.2.0
func (g *Group) Add(controllers ...*Controller)
Add will add a controller to the group.
type HasMany ¶ added in v0.2.0
type HasMany struct{}
The HasMany type denotes a has many relationship in a model declaration.
type Meta ¶ added in v0.2.0
type Meta struct { Name string PluralName string Collection string Fields []Field // contains filtered or unexported fields }
Meta stores extracted meta data from a model.
func NewMeta ¶ added in v0.2.0
NewMeta returns the Meta structure for the passed Model.
Note: This method panics if the passed Model has invalid fields and tags.
func (*Meta) FindField ¶ added in v0.2.0
FindField returns the first field that has a matching Name, JSONName, or BSONName. FindField will return nil if no field has been found.
func (*Meta) Make ¶ added in v0.2.0
Make returns a pointer to a new zero initialized model e.g. *Post.
Note: Other libraries like mgo might replace the pointer content with a new structure, therefore the model eventually needs to be initialized again using Init().
func (*Meta) MakeSlice ¶ added in v0.2.0
func (m *Meta) MakeSlice() interface{}
MakeSlice returns a pointer to a zero length slice of the model e.g. *[]*Post.
Note: Don't forget to initialize the slice using InitSlice() after adding elements with libraries like mgo.
func (*Meta) MustFindField ¶ added in v0.2.0
MustFindField returns the first field that has a matching Name, JSONName, or BSONName. MustFindField will panic if no field has been found.
type Model ¶ added in v0.2.0
type Model interface { ID() bson.ObjectId MustGet(string) interface{} MustSet(string, interface{}) Meta() *Meta // contains filtered or unexported methods }
Model is the main interface implemented by every fire model embedding Base.
type Store ¶ added in v0.2.0
type Store struct {
// contains filtered or unexported fields
}
A Store manages the usage of database connections.
func CreateStore ¶ added in v0.2.0
CreateStore will dial the passed database and return a new store. It will return an error if the initial connection failed
func MustCreateStore ¶ added in v0.2.0
MustCreateStore will dial the passed database and return a new store. It will panic if the initial connection failed.
func NewStore ¶ added in v0.2.0
func NewStore(session *mgo.Session) *Store
NewStore returns a Store that uses the passed session and its default database.
func (*Store) Close ¶ added in v0.2.0
func (s *Store) Close()
Close will close the store and its associated session.
type ValidatableModel ¶ added in v0.2.2
type ValidatableModel interface { Model // The Validate method that should return normal errors about invalid fields. Validate() error }
The ValidatableModel interface can be additionally implemented to provide a custom validation method that is used by the Validate function.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package auth implements an authenticator component that provides OAuth2 compatible authentication.
|
Package auth implements an authenticator component that provides OAuth2 compatible authentication. |
Package tools implements various helpful tools for developing apps.
|
Package tools implements various helpful tools for developing apps. |