示例#1
0
文件: scope.go 项目: jllopis/try6
// GetScopesByTenantID returns a list of scopes owned by the tenant
func GetScopesByTenantID(sm store.Storer) echo.HandlerFunc {
	return func(ctx *echo.Context) error {
		var tenantID string
		if tenantID = ctx.Param("id"); tenantID == "" {
			return ctx.JSON(http.StatusBadRequest, &logMessage{Status: "error", Action: "GetScopesByTenantID", Info: "tenant id cannot be nil"})
		}
		scopes, err := sm.GetScopesByTenantID(tenantID)
		if err != nil {
			return ctx.JSON(http.StatusInternalServerError, &logMessage{Status: "error", Action: "GetScopesByTenantID", Info: err.Error(), Table: "scopes"})
		}
		return ctx.JSON(http.StatusOK, scopes)
	}
}
示例#2
0
文件: tenant.go 项目: jllopis/try6
// CreateTenant handler creates a new tenant with the data provided in the request body
func CreateTenant(sm store.Storer) echo.HandlerFunc {
	return func(ctx *echo.Context) error {
		var ctd try6.CreateTenantData
		err := json.NewDecoder(ctx.Request().Body).Decode(&ctd)
		if err != nil {
			return ctx.JSON(http.StatusBadRequest, &logMessage{Status: "error", Action: "create", Info: err.Error(), Table: "tenants"})
		}
		err = sm.CreateTenant(&ctd)
		if err != nil {
			return ctx.JSON(http.StatusInternalServerError, &logMessage{Status: "error", Action: "create", Info: err.Error(), Table: "tenants"})
		}
		return ctx.JSON(http.StatusCreated, ctd)
	}
}
示例#3
0
文件: scope.go 项目: jllopis/try6
// CreateScope handler creates a new scope for the tenant specified in the body
func CreateScope(sm store.Storer) echo.HandlerFunc {
	return func(ctx *echo.Context) error {
		var s try6.Scope
		err := json.NewDecoder(ctx.Request().Body).Decode(&s)
		if err != nil {
			return ctx.JSON(http.StatusBadRequest, &logMessage{Status: "error", Action: "create", Info: err.Error(), Table: "scopes"})
		}
		if s.TenantID == "" {
			return ctx.JSON(http.StatusBadRequest, &logMessage{Status: "error", Action: "create", Info: "tenant not specified", Table: "scopes"})
		}
		err = sm.SaveScope(&s)
		if err != nil {
			return ctx.JSON(http.StatusInternalServerError, &logMessage{Status: "error", Action: "create", Info: err.Error(), Table: "scopes"})
		}
		return ctx.JSON(http.StatusCreated, s)
	}
}