mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
App ID (#641)
* App ID * Clean-up * Use ID or name to reference apps * Can use app by name or ID * Get rid of AppName for routes API and model routes API is completely backwards-compatible routes API accepts both app ID and name * Get rid of AppName from calls API and model * Fixing tests * Get rid of AppName from logs API and model * Restrict API to work with app names only * Addressing review comments * Fix for hybrid mode * Fix rebase problems * Addressing review comments * Addressing review comments pt.2 * Fixing test issue * Addressing review comments pt.3 * Updated docstring * Adjust UpdateApp SQL implementation to work with app IDs instead of names * Fixing tests * fmt after rebase * Make tests green again! * Use GetAppByID wherever it is necessary - adding new v2 endpoints to keep hybrid api/runner mode working - extract CallBase from Call object to expose that to a user (it doesn't include any app reference, as we do for all other API objects) * Get rid of GetAppByName * Adjusting server router setup * Make hybrid work again * Fix datastore tests * Fixing tests * Do not ignore app_id * Resolve issues after rebase * Updating test to make it work as it was * Tabula rasa for migrations * Adding calls API test - we need to ensure we give "App not found" for the missing app and missing call in first place - making previous test work (request missing call for the existing app) * Make datastore tests work fine with correctly applied migrations * Make CallFunction middleware work again had to adjust its implementation to set app ID before proceeding * The biggest rebase ever made * Fix 8's migration * Fix tests * Fix hybrid client * Fix tests problem * Increment app ID migration version * Fixing TestAppUpdate * Fix rebase issues * Addressing review comments * Renew vendor * Updated swagger doc per recommendations
This commit is contained in:
committed by
Reed Allman
parent
4e90844a67
commit
3c15ca6ea6
@@ -118,18 +118,29 @@ func (cl *client) Finish(ctx context.Context, c *models.Call, r io.Reader, async
|
||||
return err
|
||||
}
|
||||
|
||||
func (cl *client) GetApp(ctx context.Context, appName string) (*models.App, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "hybrid_client_get_app")
|
||||
func (cl *client) GetAppID(ctx context.Context, appName string) (string, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "hybrid_client_get_app_id")
|
||||
defer span.End()
|
||||
|
||||
var a struct {
|
||||
A models.App `json:"app"`
|
||||
}
|
||||
err := cl.do(ctx, nil, &a, "GET", "apps", appName)
|
||||
return a.A.ID, err
|
||||
}
|
||||
|
||||
func (cl *client) GetAppByID(ctx context.Context, appID string) (*models.App, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "hybrid_client_get_app_id")
|
||||
defer span.End()
|
||||
|
||||
var a struct {
|
||||
A models.App `json:"app"`
|
||||
}
|
||||
err := cl.do(ctx, nil, &a, "GET", "runner", "apps", appID)
|
||||
return &a.A, err
|
||||
}
|
||||
|
||||
func (cl *client) GetRoute(ctx context.Context, appName, route string) (*models.Route, error) {
|
||||
func (cl *client) GetRoute(ctx context.Context, appID, route string) (*models.Route, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "hybrid_client_get_route")
|
||||
defer span.End()
|
||||
|
||||
@@ -137,7 +148,7 @@ func (cl *client) GetRoute(ctx context.Context, appName, route string) (*models.
|
||||
var r struct {
|
||||
R models.Route `json:"route"`
|
||||
}
|
||||
err := cl.do(ctx, nil, &r, "GET", "apps", appName, "routes", strings.TrimPrefix(route, "/"))
|
||||
err := cl.do(ctx, nil, &r, "GET", "runner", "apps", appID, "routes", strings.TrimPrefix(route, "/"))
|
||||
return &r.R, err
|
||||
}
|
||||
|
||||
@@ -162,7 +173,7 @@ func (cl *client) do(ctx context.Context, request, result interface{}, method st
|
||||
err = cl.once(ctx, request, result, method, url...)
|
||||
switch err := err.(type) {
|
||||
case nil:
|
||||
return err
|
||||
return nil
|
||||
case *httpErr:
|
||||
if err.code < 500 {
|
||||
return err
|
||||
|
||||
@@ -17,6 +17,18 @@ func NewNopDataStore() (agent.DataAccess, error) {
|
||||
return &nopDataStore{}, nil
|
||||
}
|
||||
|
||||
func (cl *nopDataStore) GetAppID(ctx context.Context, appName string) (string, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "nop_datastore_get_app_id")
|
||||
defer span.End()
|
||||
return "", errors.New("should not call GetAppID on a NOP data store")
|
||||
}
|
||||
|
||||
func (cl *nopDataStore) GetAppByID(ctx context.Context, appID string) (*models.App, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "nop_datastore_get_app_by_id")
|
||||
defer span.End()
|
||||
return nil, errors.New("should not call GetAppByID on a NOP data store")
|
||||
}
|
||||
|
||||
func (cl *nopDataStore) Enqueue(ctx context.Context, c *models.Call) error {
|
||||
ctx, span := trace.StartSpan(ctx, "nop_datastore_enqueue")
|
||||
defer span.End()
|
||||
@@ -41,12 +53,6 @@ func (cl *nopDataStore) Finish(ctx context.Context, c *models.Call, r io.Reader,
|
||||
return nil // It's ok to call this method, and it does no operations
|
||||
}
|
||||
|
||||
func (cl *nopDataStore) GetApp(ctx context.Context, appName string) (*models.App, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "nop_datastore_get_app")
|
||||
defer span.End()
|
||||
return nil, errors.New("Should not call GetApp on a NOP data store")
|
||||
}
|
||||
|
||||
func (cl *nopDataStore) GetRoute(ctx context.Context, appName, route string) (*models.Route, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "nop_datastore_get_route")
|
||||
defer span.End()
|
||||
|
||||
Reference in New Issue
Block a user