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
@@ -32,6 +32,9 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
}
|
||||
}()
|
||||
|
||||
testApp.SetDefaults()
|
||||
testRoute.AppID = testApp.ID
|
||||
|
||||
ctx := context.Background()
|
||||
|
||||
call := new(models.Call)
|
||||
@@ -40,7 +43,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
call.Error = "ya dun goofed"
|
||||
call.StartedAt = strfmt.DateTime(time.Now())
|
||||
call.CompletedAt = strfmt.DateTime(time.Now())
|
||||
call.AppName = testApp.Name
|
||||
call.AppID = testApp.ID
|
||||
call.Path = testRoute.Path
|
||||
|
||||
t.Run("call-insert", func(t *testing.T) {
|
||||
@@ -67,7 +70,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
if err != nil {
|
||||
t.Fatalf("Test UpdateCall: unexpected error `%v`", err)
|
||||
}
|
||||
dbCall, err := ds.GetCall(ctx, call.AppName, call.ID)
|
||||
dbCall, err := ds.GetCall(ctx, call.AppID, call.ID)
|
||||
if err != nil {
|
||||
t.Fatalf("Test UpdateCall: unexpected error `%v`", err)
|
||||
}
|
||||
@@ -89,8 +92,8 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
if time.Time(dbCall.CompletedAt).Unix() != time.Time(newCall.CompletedAt).Unix() {
|
||||
t.Fatalf("Test GetCall: completed_at mismatch `%v` `%v`", call.CompletedAt, newCall.CompletedAt)
|
||||
}
|
||||
if dbCall.AppName != newCall.AppName {
|
||||
t.Fatalf("Test GetCall: app_name mismatch `%v` `%v`", call.AppName, newCall.AppName)
|
||||
if dbCall.AppID != newCall.AppID {
|
||||
t.Fatalf("Test GetCall: app_name mismatch `%v` `%v`", call.AppID, newCall.AppID)
|
||||
}
|
||||
if dbCall.Path != newCall.Path {
|
||||
t.Fatalf("Test GetCall: path mismatch `%v` `%v`", call.Path, newCall.Path)
|
||||
@@ -139,7 +142,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
if err != nil {
|
||||
t.Fatalf("Test GetCall: unexpected error `%v`", err)
|
||||
}
|
||||
newCall, err := ds.GetCall(ctx, call.AppName, call.ID)
|
||||
newCall, err := ds.GetCall(ctx, call.AppID, call.ID)
|
||||
if err != nil {
|
||||
t.Fatalf("Test GetCall: unexpected error `%v`", err)
|
||||
}
|
||||
@@ -161,8 +164,8 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
if time.Time(call.CompletedAt).Unix() != time.Time(newCall.CompletedAt).Unix() {
|
||||
t.Fatalf("Test GetCall: completed_at mismatch `%v` `%v`", call.CompletedAt, newCall.CompletedAt)
|
||||
}
|
||||
if call.AppName != newCall.AppName {
|
||||
t.Fatalf("Test GetCall: app_name mismatch `%v` `%v`", call.AppName, newCall.AppName)
|
||||
if call.AppID != newCall.AppID {
|
||||
t.Fatalf("Test GetCall: app_name mismatch `%v` `%v`", call.AppID, newCall.AppID)
|
||||
}
|
||||
if call.Path != newCall.Path {
|
||||
t.Fatalf("Test GetCall: path mismatch `%v` `%v`", call.Path, newCall.Path)
|
||||
@@ -171,7 +174,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
|
||||
t.Run("calls-get", func(t *testing.T) {
|
||||
ds := dsf(t)
|
||||
filter := &models.CallFilter{AppName: call.AppName, Path: call.Path, PerPage: 100}
|
||||
filter := &models.CallFilter{AppID: call.AppID, Path: call.Path, PerPage: 100}
|
||||
call.ID = id.New().String()
|
||||
call.CreatedAt = strfmt.DateTime(time.Now())
|
||||
err := ds.InsertCall(ctx, call)
|
||||
@@ -238,7 +241,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
}
|
||||
|
||||
// test that filters actually applied
|
||||
calls, err = ds.GetCalls(ctx, &models.CallFilter{AppName: "wrongappname", PerPage: 100})
|
||||
calls, err = ds.GetCalls(ctx, &models.CallFilter{AppID: "wrongappname", PerPage: 100})
|
||||
if err != nil {
|
||||
t.Fatalf("Test GetCalls(ctx, filter): unexpected error `%v`", err)
|
||||
}
|
||||
@@ -291,53 +294,56 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
if !inserted.Equals(testApp) {
|
||||
t.Fatalf("Test InsertApp: expected to insert:\n%v\nbut got:\n%v", testApp, inserted)
|
||||
}
|
||||
|
||||
_, err = ds.InsertApp(ctx, testApp)
|
||||
if err != models.ErrAppsAlreadyExists {
|
||||
t.Fatalf("Test InsertApp duplicated: expected error `%v`, but it was `%v`", models.ErrAppsAlreadyExists, err)
|
||||
}
|
||||
testApp.ID = inserted.ID
|
||||
|
||||
{
|
||||
// Set a config var
|
||||
updated, err := ds.UpdateApp(ctx, &models.App{Name: testApp.Name, Config: map[string]string{"TEST": "1"}})
|
||||
testApp, err := ds.GetAppByID(ctx, testApp.ID)
|
||||
if err != nil {
|
||||
t.Fatal(err.Error())
|
||||
}
|
||||
testApp.Config = map[string]string{"TEST": "1"}
|
||||
updated, err := ds.UpdateApp(ctx, testApp)
|
||||
if err != nil {
|
||||
t.Fatalf("Test UpdateApp: error when updating app: %v", err)
|
||||
}
|
||||
expected := &models.App{Name: testApp.Name, Config: map[string]string{"TEST": "1"}}
|
||||
expected := &models.App{ID: testApp.ID, Name: testApp.Name, Config: map[string]string{"TEST": "1"}}
|
||||
if !updated.Equals(expected) {
|
||||
t.Fatalf("Test UpdateApp: expected updated `%v` but got `%v`", expected, updated)
|
||||
}
|
||||
|
||||
// Set a different var (without clearing the existing)
|
||||
updated, err = ds.UpdateApp(ctx,
|
||||
&models.App{Name: testApp.Name, Config: map[string]string{"OTHER": "TEST"}})
|
||||
another := testApp.Clone()
|
||||
another.Config = map[string]string{"OTHER": "TEST"}
|
||||
updated, err = ds.UpdateApp(ctx, another)
|
||||
if err != nil {
|
||||
t.Fatalf("Test UpdateApp: error when updating app: %v", err)
|
||||
}
|
||||
expected = &models.App{Name: testApp.Name, Config: map[string]string{"TEST": "1", "OTHER": "TEST"}}
|
||||
expected = &models.App{Name: testApp.Name, ID: testApp.ID, Config: map[string]string{"TEST": "1", "OTHER": "TEST"}}
|
||||
if !updated.Equals(expected) {
|
||||
t.Fatalf("Test UpdateApp: expected updated `%v` but got `%v`", expected, updated)
|
||||
}
|
||||
|
||||
// Delete a var
|
||||
updated, err = ds.UpdateApp(ctx,
|
||||
&models.App{Name: testApp.Name, Config: map[string]string{"TEST": ""}})
|
||||
dVar := testApp.Clone()
|
||||
dVar.Config = map[string]string{"TEST": ""}
|
||||
updated, err = ds.UpdateApp(ctx, dVar)
|
||||
if err != nil {
|
||||
t.Fatalf("Test UpdateApp: error when updating app: %v", err)
|
||||
}
|
||||
expected = &models.App{Name: testApp.Name, Config: map[string]string{"OTHER": "TEST"}}
|
||||
expected = &models.App{Name: testApp.Name, ID: testApp.ID, Config: map[string]string{"OTHER": "TEST"}}
|
||||
if !updated.Equals(expected) {
|
||||
t.Fatalf("Test UpdateApp: expected updated `%v` but got `%v`", expected, updated)
|
||||
}
|
||||
}
|
||||
|
||||
// Testing get app
|
||||
_, err = ds.GetApp(ctx, "")
|
||||
if err != models.ErrAppsMissingName {
|
||||
t.Fatalf("Test GetApp: expected error to be %v, but it was %s", models.ErrAppsMissingName, err)
|
||||
_, err = ds.GetAppByID(ctx, "")
|
||||
if err != models.ErrDatastoreEmptyAppID {
|
||||
t.Fatalf("Test GetApp: expected error to be %v, but it was %s", models.ErrDatastoreEmptyAppID, err)
|
||||
}
|
||||
|
||||
app, err := ds.GetApp(ctx, testApp.Name)
|
||||
app, err := ds.GetAppByID(ctx, testApp.ID)
|
||||
if err != nil {
|
||||
t.Fatalf("Test GetApp: error: %s", err)
|
||||
}
|
||||
@@ -358,14 +364,14 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
}
|
||||
|
||||
// test pagination stuff (ordering / limits / cursoring)
|
||||
a2 := *testApp
|
||||
a3 := *testApp
|
||||
a2.Name = "Testa"
|
||||
a3.Name = "Testb"
|
||||
if _, err = ds.InsertApp(ctx, &a2); err != nil {
|
||||
a2 := &models.App{Name: "Testa"}
|
||||
a2.SetDefaults()
|
||||
a3 := &models.App{Name: "Testb"}
|
||||
a3.SetDefaults()
|
||||
if _, err = ds.InsertApp(ctx, a2); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if _, err = ds.InsertApp(ctx, &a3); err != nil {
|
||||
if _, err = ds.InsertApp(ctx, a3); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
@@ -391,10 +397,9 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
t.Fatalf("Test GetApps: expected `app.Name` to be `%s` but it was `%s`", a3.Name, apps[1].Name)
|
||||
}
|
||||
|
||||
a4 := *testApp
|
||||
a4.Name = "Abcdefg" // < /test lexicographically, but not in length
|
||||
|
||||
if _, err = ds.InsertApp(ctx, &a4); err != nil {
|
||||
a4 := &models.App{Name: "Abcdefg"}
|
||||
a4.SetDefaults()
|
||||
if _, err = ds.InsertApp(ctx, a4); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
@@ -419,29 +424,33 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
|
||||
// Testing app delete
|
||||
err = ds.RemoveApp(ctx, "")
|
||||
if err != models.ErrAppsMissingName {
|
||||
t.Fatalf("Test RemoveApp: expected error `%v`, but it was `%v`", models.ErrAppsMissingName, err)
|
||||
if err != models.ErrDatastoreEmptyAppID {
|
||||
t.Fatalf("Test RemoveApp: expected error `%v`, but it was `%v`", models.ErrDatastoreEmptyAppID, err)
|
||||
}
|
||||
|
||||
err = ds.RemoveApp(ctx, testApp.Name)
|
||||
testApp, _ := ds.GetAppByID(ctx, testApp.ID)
|
||||
err = ds.RemoveApp(ctx, testApp.ID)
|
||||
if err != nil {
|
||||
t.Fatalf("Test RemoveApp: error: %s", err)
|
||||
}
|
||||
app, err = ds.GetApp(ctx, testApp.Name)
|
||||
app, err = ds.GetAppByID(ctx, testApp.ID)
|
||||
if err != models.ErrAppsNotFound {
|
||||
t.Fatalf("Test GetApp(removed): expected error `%v`, but it was `%v`", models.ErrAppsNotFound, err)
|
||||
}
|
||||
if app != nil {
|
||||
t.Fatal("Test RemoveApp: failed to remove the app")
|
||||
t.Log(err.Error())
|
||||
t.Fatal("Test RemoveApp: failed to remove the app, app should be gone already")
|
||||
}
|
||||
|
||||
// Test update inexistent app
|
||||
_, err = ds.UpdateApp(ctx, &models.App{
|
||||
missingApp := &models.App{
|
||||
Name: testApp.Name,
|
||||
Config: map[string]string{
|
||||
"TEST": "1",
|
||||
},
|
||||
})
|
||||
}
|
||||
missingApp.SetDefaults()
|
||||
_, err = ds.UpdateApp(ctx, missingApp)
|
||||
if err != models.ErrAppsNotFound {
|
||||
t.Fatalf("Test UpdateApp(inexistent): expected error `%v`, but it was `%v`", models.ErrAppsNotFound, err)
|
||||
}
|
||||
@@ -450,7 +459,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
t.Run("routes", func(t *testing.T) {
|
||||
ds := dsf(t)
|
||||
// Insert app again to test routes
|
||||
_, err := ds.InsertApp(ctx, testApp)
|
||||
testApp, err := ds.InsertApp(ctx, testApp)
|
||||
if err != nil && err != models.ErrAppsAlreadyExists {
|
||||
t.Fatal("Test InsertRoute Prep: failed to insert app: ", err)
|
||||
}
|
||||
@@ -462,14 +471,15 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
t.Fatalf("Test InsertRoute(nil): expected error `%v`, but it was `%v`", models.ErrDatastoreEmptyRoute, err)
|
||||
}
|
||||
|
||||
copyRoute := *testRoute
|
||||
copyRoute.AppName = "notreal"
|
||||
_, err = ds.InsertRoute(ctx, ©Route)
|
||||
newTestRoute := testRoute.Clone()
|
||||
newTestRoute.AppID = "notreal"
|
||||
_, err = ds.InsertRoute(ctx, newTestRoute)
|
||||
if err != models.ErrAppsNotFound {
|
||||
t.Fatalf("Test InsertRoute: expected error `%v`, but it was `%v`", models.ErrAppsNotFound, err)
|
||||
}
|
||||
|
||||
_, err = ds.InsertRoute(ctx, testRoute)
|
||||
testRoute.AppID = testApp.ID
|
||||
testRoute, err = ds.InsertRoute(ctx, testRoute)
|
||||
if err != nil {
|
||||
t.Fatalf("Test InsertRoute: error when storing new route: %s", err)
|
||||
}
|
||||
@@ -482,17 +492,17 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
|
||||
// Testing get
|
||||
{
|
||||
_, err = ds.GetRoute(ctx, "a", "")
|
||||
_, err = ds.GetRoute(ctx, id.New().String(), "")
|
||||
if err != models.ErrRoutesMissingPath {
|
||||
t.Fatalf("Test GetRoute(empty route path): expected error `%v`, but it was `%v`", models.ErrRoutesMissingPath, err)
|
||||
}
|
||||
|
||||
_, err = ds.GetRoute(ctx, "", "a")
|
||||
if err != models.ErrAppsMissingName {
|
||||
t.Fatalf("Test GetRoute(empty app name): expected error `%v`, but it was `%v`", models.ErrAppsMissingName, err)
|
||||
if err != models.ErrDatastoreEmptyAppID {
|
||||
t.Fatalf("Test GetRoute(empty app name): expected error `%v`, but it was `%v`", models.ErrRoutesMissingPath, err)
|
||||
}
|
||||
|
||||
route, err := ds.GetRoute(ctx, testApp.Name, testRoute.Path)
|
||||
route, err := ds.GetRoute(ctx, testApp.ID, testRoute.Path)
|
||||
if err != nil {
|
||||
t.Fatalf("Test GetRoute: unexpected error %v", err)
|
||||
}
|
||||
@@ -505,7 +515,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
{
|
||||
// Update some fields, and add 3 configs and 3 headers.
|
||||
updated, err := ds.UpdateRoute(ctx, &models.Route{
|
||||
AppName: testRoute.AppName,
|
||||
AppID: testApp.ID,
|
||||
Path: testRoute.Path,
|
||||
Timeout: 2,
|
||||
Config: map[string]string{
|
||||
@@ -524,7 +534,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
}
|
||||
expected := &models.Route{
|
||||
// unchanged
|
||||
AppName: testRoute.AppName,
|
||||
AppID: testApp.ID,
|
||||
Path: testRoute.Path,
|
||||
Image: "fnproject/fn-test-utils",
|
||||
Type: "sync",
|
||||
@@ -551,8 +561,8 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
|
||||
// Update a config var, remove another. Add one Header, remove another.
|
||||
updated, err = ds.UpdateRoute(ctx, &models.Route{
|
||||
AppName: testRoute.AppName,
|
||||
Path: testRoute.Path,
|
||||
AppID: testRoute.AppID,
|
||||
Path: testRoute.Path,
|
||||
Config: map[string]string{
|
||||
"FIRST": "first",
|
||||
"SECOND": "",
|
||||
@@ -568,7 +578,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
}
|
||||
expected = &models.Route{
|
||||
// unchanged
|
||||
AppName: testRoute.AppName,
|
||||
AppID: testRoute.AppID,
|
||||
Path: testRoute.Path,
|
||||
Image: "fnproject/fn-test-utils",
|
||||
Type: "sync",
|
||||
@@ -593,7 +603,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
}
|
||||
|
||||
// Testing list routes
|
||||
routes, err := ds.GetRoutesByApp(ctx, testApp.Name, &models.RouteFilter{PerPage: 1})
|
||||
routes, err := ds.GetRoutesByApp(ctx, testApp.ID, &models.RouteFilter{PerPage: 1})
|
||||
if err != nil {
|
||||
t.Fatalf("Test GetRoutesByApp: unexpected error %v", err)
|
||||
}
|
||||
@@ -606,7 +616,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
t.Fatalf("Test GetRoutes: expected `app.Name` to be `%s` but it was `%s`", testRoute.Path, routes[0].Path)
|
||||
}
|
||||
|
||||
routes, err = ds.GetRoutesByApp(ctx, testApp.Name, &models.RouteFilter{Image: testRoute.Image, PerPage: 1})
|
||||
routes, err = ds.GetRoutesByApp(ctx, testApp.ID, &models.RouteFilter{Image: testRoute.Image, PerPage: 1})
|
||||
if err != nil {
|
||||
t.Fatalf("Test GetRoutesByApp: unexpected error %v", err)
|
||||
}
|
||||
@@ -619,7 +629,9 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
t.Fatalf("Test GetRoutesByApp: expected `route.Path` to be `%s` but it was `%s`", testRoute.Path, routes[0].Path)
|
||||
}
|
||||
|
||||
routes, err = ds.GetRoutesByApp(ctx, "notreal", &models.RouteFilter{PerPage: 1})
|
||||
nre := &models.App{Name: "notreal"}
|
||||
nre.SetDefaults()
|
||||
routes, err = ds.GetRoutesByApp(ctx, nre.ID, &models.RouteFilter{PerPage: 1})
|
||||
if err != nil {
|
||||
t.Fatalf("Test GetRoutesByApp: error: %s", err)
|
||||
}
|
||||
@@ -629,7 +641,9 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
|
||||
// test pagination stuff
|
||||
r2 := *testRoute
|
||||
r2.AppID = testApp.ID
|
||||
r3 := *testRoute
|
||||
r2.AppID = testApp.ID
|
||||
r2.Path = "/testa"
|
||||
r3.Path = "/testb"
|
||||
|
||||
@@ -640,7 +654,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
routes, err = ds.GetRoutesByApp(ctx, testApp.Name, &models.RouteFilter{PerPage: 1})
|
||||
routes, err = ds.GetRoutesByApp(ctx, testApp.ID, &models.RouteFilter{PerPage: 1})
|
||||
if err != nil {
|
||||
t.Fatalf("Test GetRoutesByApp: error: %s", err)
|
||||
}
|
||||
@@ -650,7 +664,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
t.Fatalf("Test GetRoutesByApp: expected `route.Path` to be `%s` but it was `%s`", testRoute.Path, routes[0].Path)
|
||||
}
|
||||
|
||||
routes, err = ds.GetRoutesByApp(ctx, testApp.Name, &models.RouteFilter{PerPage: 2, Cursor: routes[0].Path})
|
||||
routes, err = ds.GetRoutesByApp(ctx, testApp.ID, &models.RouteFilter{PerPage: 2, Cursor: routes[0].Path})
|
||||
if err != nil {
|
||||
t.Fatalf("Test GetRoutesByApp: error: %s", err)
|
||||
}
|
||||
@@ -669,7 +683,7 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
routes, err = ds.GetRoutesByApp(ctx, testApp.Name, &models.RouteFilter{PerPage: 100})
|
||||
routes, err = ds.GetRoutesByApp(ctx, testApp.ID, &models.RouteFilter{PerPage: 100})
|
||||
if err != nil {
|
||||
t.Fatalf("Test GetRoutesByApp: error: %s", err)
|
||||
}
|
||||
@@ -684,21 +698,21 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
|
||||
// Testing route delete
|
||||
err = ds.RemoveRoute(ctx, "", "")
|
||||
if err != models.ErrAppsMissingName {
|
||||
t.Fatalf("Test RemoveRoute(empty app name): expected error `%v`, but it was `%v`", models.ErrAppsMissingName, err)
|
||||
if err != models.ErrDatastoreEmptyAppID {
|
||||
t.Fatalf("Test RemoveRoute(empty app name): expected error `%v`, but it was `%v`", models.ErrDatastoreEmptyAppID, err)
|
||||
}
|
||||
|
||||
err = ds.RemoveRoute(ctx, "a", "")
|
||||
err = ds.RemoveRoute(ctx, testApp.ID, "")
|
||||
if err != models.ErrRoutesMissingPath {
|
||||
t.Fatalf("Test RemoveRoute(empty route path): expected error `%v`, but it was `%v`", models.ErrRoutesMissingPath, err)
|
||||
}
|
||||
|
||||
err = ds.RemoveRoute(ctx, testRoute.AppName, testRoute.Path)
|
||||
err = ds.RemoveRoute(ctx, testApp.ID, testRoute.Path)
|
||||
if err != nil {
|
||||
t.Fatalf("Test RemoveApp: unexpected error: %v", err)
|
||||
}
|
||||
|
||||
route, err := ds.GetRoute(ctx, testRoute.AppName, testRoute.Path)
|
||||
route, err := ds.GetRoute(ctx, testApp.ID, testRoute.Path)
|
||||
if err != nil && err != models.ErrRoutesNotFound {
|
||||
t.Fatalf("Test GetRoute: expected error `%v`, but it was `%v`", models.ErrRoutesNotFound, err)
|
||||
}
|
||||
@@ -707,9 +721,9 @@ func Test(t *testing.T, dsf func(t *testing.T) models.Datastore) {
|
||||
}
|
||||
|
||||
_, err = ds.UpdateRoute(ctx, &models.Route{
|
||||
AppName: testRoute.AppName,
|
||||
Path: testRoute.Path,
|
||||
Image: "test",
|
||||
AppID: testApp.ID,
|
||||
Path: testRoute.Path,
|
||||
Image: "test",
|
||||
})
|
||||
if err != models.ErrRoutesNotFound {
|
||||
t.Fatalf("Test UpdateRoute inexistent: expected error to be `%v`, but it was `%v`", models.ErrRoutesNotFound, err)
|
||||
@@ -722,7 +736,6 @@ var testApp = &models.App{
|
||||
}
|
||||
|
||||
var testRoute = &models.Route{
|
||||
AppName: testApp.Name,
|
||||
Path: "/test",
|
||||
Image: "fnproject/fn-test-utils",
|
||||
Type: "sync",
|
||||
|
||||
@@ -18,10 +18,16 @@ type metricds struct {
|
||||
ds models.Datastore
|
||||
}
|
||||
|
||||
func (m *metricds) GetApp(ctx context.Context, appName string) (*models.App, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "ds_get_app")
|
||||
func (m *metricds) GetAppID(ctx context.Context, appName string) (string, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "ds_get_app_id")
|
||||
defer span.End()
|
||||
return m.ds.GetApp(ctx, appName)
|
||||
return m.ds.GetAppID(ctx, appName)
|
||||
}
|
||||
|
||||
func (m *metricds) GetAppByID(ctx context.Context, appID string) (*models.App, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "ds_get_app_by_id")
|
||||
defer span.End()
|
||||
return m.ds.GetAppByID(ctx, appID)
|
||||
}
|
||||
|
||||
func (m *metricds) GetApps(ctx context.Context, filter *models.AppFilter) ([]*models.App, error) {
|
||||
@@ -42,22 +48,22 @@ func (m *metricds) UpdateApp(ctx context.Context, app *models.App) (*models.App,
|
||||
return m.ds.UpdateApp(ctx, app)
|
||||
}
|
||||
|
||||
func (m *metricds) RemoveApp(ctx context.Context, appName string) error {
|
||||
func (m *metricds) RemoveApp(ctx context.Context, appID string) error {
|
||||
ctx, span := trace.StartSpan(ctx, "ds_remove_app")
|
||||
defer span.End()
|
||||
return m.ds.RemoveApp(ctx, appName)
|
||||
return m.ds.RemoveApp(ctx, appID)
|
||||
}
|
||||
|
||||
func (m *metricds) GetRoute(ctx context.Context, appName, routePath string) (*models.Route, error) {
|
||||
func (m *metricds) GetRoute(ctx context.Context, appID, routePath string) (*models.Route, error) {
|
||||
ctx, span := trace.StartSpan(ctx, "ds_get_route")
|
||||
defer span.End()
|
||||
return m.ds.GetRoute(ctx, appName, routePath)
|
||||
return m.ds.GetRoute(ctx, appID, routePath)
|
||||
}
|
||||
|
||||
func (m *metricds) GetRoutesByApp(ctx context.Context, appName string, filter *models.RouteFilter) (routes []*models.Route, err error) {
|
||||
func (m *metricds) GetRoutesByApp(ctx context.Context, appID string, filter *models.RouteFilter) (routes []*models.Route, err error) {
|
||||
ctx, span := trace.StartSpan(ctx, "ds_get_routes_by_app")
|
||||
defer span.End()
|
||||
return m.ds.GetRoutesByApp(ctx, appName, filter)
|
||||
return m.ds.GetRoutesByApp(ctx, appID, filter)
|
||||
}
|
||||
|
||||
func (m *metricds) InsertRoute(ctx context.Context, route *models.Route) (*models.Route, error) {
|
||||
@@ -72,10 +78,10 @@ func (m *metricds) UpdateRoute(ctx context.Context, route *models.Route) (*model
|
||||
return m.ds.UpdateRoute(ctx, route)
|
||||
}
|
||||
|
||||
func (m *metricds) RemoveRoute(ctx context.Context, appName, routePath string) error {
|
||||
func (m *metricds) RemoveRoute(ctx context.Context, appID string, routePath string) error {
|
||||
ctx, span := trace.StartSpan(ctx, "ds_remove_route")
|
||||
defer span.End()
|
||||
return m.ds.RemoveRoute(ctx, appName, routePath)
|
||||
return m.ds.RemoveRoute(ctx, appID, routePath)
|
||||
}
|
||||
|
||||
func (m *metricds) InsertCall(ctx context.Context, call *models.Call) error {
|
||||
|
||||
@@ -17,12 +17,19 @@ type validator struct {
|
||||
models.Datastore
|
||||
}
|
||||
|
||||
// name will never be empty.
|
||||
func (v *validator) GetApp(ctx context.Context, name string) (app *models.App, err error) {
|
||||
if name == "" {
|
||||
return nil, models.ErrAppsMissingName
|
||||
func (v *validator) GetAppID(ctx context.Context, appName string) (string, error) {
|
||||
if appName == "" {
|
||||
return "", models.ErrAppsMissingName
|
||||
}
|
||||
return v.Datastore.GetApp(ctx, name)
|
||||
return v.Datastore.GetAppID(ctx, appName)
|
||||
}
|
||||
|
||||
func (v *validator) GetAppByID(ctx context.Context, appID string) (*models.App, error) {
|
||||
if appID == "" {
|
||||
return nil, models.ErrDatastoreEmptyAppID
|
||||
}
|
||||
|
||||
return v.Datastore.GetAppByID(ctx, appID)
|
||||
}
|
||||
|
||||
func (v *validator) GetApps(ctx context.Context, appFilter *models.AppFilter) ([]*models.App, error) {
|
||||
@@ -48,40 +55,41 @@ func (v *validator) UpdateApp(ctx context.Context, app *models.App) (*models.App
|
||||
if app == nil {
|
||||
return nil, models.ErrDatastoreEmptyApp
|
||||
}
|
||||
if app.Name == "" {
|
||||
return nil, models.ErrAppsMissingName
|
||||
if app.ID == "" {
|
||||
return nil, models.ErrDatastoreEmptyAppID
|
||||
}
|
||||
|
||||
return v.Datastore.UpdateApp(ctx, app)
|
||||
}
|
||||
|
||||
// name will never be empty.
|
||||
func (v *validator) RemoveApp(ctx context.Context, name string) error {
|
||||
if name == "" {
|
||||
return models.ErrAppsMissingName
|
||||
func (v *validator) RemoveApp(ctx context.Context, appID string) error {
|
||||
if appID == "" {
|
||||
return models.ErrDatastoreEmptyAppID
|
||||
}
|
||||
|
||||
return v.Datastore.RemoveApp(ctx, name)
|
||||
return v.Datastore.RemoveApp(ctx, appID)
|
||||
}
|
||||
|
||||
// appName and routePath will never be empty.
|
||||
func (v *validator) GetRoute(ctx context.Context, appName, routePath string) (*models.Route, error) {
|
||||
if appName == "" {
|
||||
return nil, models.ErrAppsMissingName
|
||||
func (v *validator) GetRoute(ctx context.Context, appID, routePath string) (*models.Route, error) {
|
||||
if appID == "" {
|
||||
return nil, models.ErrDatastoreEmptyAppID
|
||||
}
|
||||
if routePath == "" {
|
||||
return nil, models.ErrRoutesMissingPath
|
||||
}
|
||||
|
||||
return v.Datastore.GetRoute(ctx, appName, routePath)
|
||||
return v.Datastore.GetRoute(ctx, appID, routePath)
|
||||
}
|
||||
|
||||
// appName will never be empty
|
||||
func (v *validator) GetRoutesByApp(ctx context.Context, appName string, routeFilter *models.RouteFilter) (routes []*models.Route, err error) {
|
||||
if appName == "" {
|
||||
return nil, models.ErrAppsMissingName
|
||||
func (v *validator) GetRoutesByApp(ctx context.Context, appID string, routeFilter *models.RouteFilter) (routes []*models.Route, err error) {
|
||||
if appID == "" {
|
||||
return nil, models.ErrDatastoreEmptyAppID
|
||||
}
|
||||
return v.Datastore.GetRoutesByApp(ctx, appName, routeFilter)
|
||||
|
||||
return v.Datastore.GetRoutesByApp(ctx, appID, routeFilter)
|
||||
}
|
||||
|
||||
// route will never be nil and route's AppName and Path will never be empty.
|
||||
@@ -103,8 +111,8 @@ func (v *validator) UpdateRoute(ctx context.Context, newroute *models.Route) (*m
|
||||
if newroute == nil {
|
||||
return nil, models.ErrDatastoreEmptyRoute
|
||||
}
|
||||
if newroute.AppName == "" {
|
||||
return nil, models.ErrAppsMissingName
|
||||
if newroute.AppID == "" {
|
||||
return nil, models.ErrRoutesMissingAppID
|
||||
}
|
||||
if newroute.Path == "" {
|
||||
return nil, models.ErrRoutesMissingPath
|
||||
@@ -113,15 +121,15 @@ func (v *validator) UpdateRoute(ctx context.Context, newroute *models.Route) (*m
|
||||
}
|
||||
|
||||
// appName and routePath will never be empty.
|
||||
func (v *validator) RemoveRoute(ctx context.Context, appName, routePath string) error {
|
||||
if appName == "" {
|
||||
return models.ErrAppsMissingName
|
||||
func (v *validator) RemoveRoute(ctx context.Context, appID string, routePath string) error {
|
||||
if appID == "" {
|
||||
return models.ErrDatastoreEmptyAppID
|
||||
}
|
||||
if routePath == "" {
|
||||
return models.ErrRoutesMissingPath
|
||||
}
|
||||
|
||||
return v.Datastore.RemoveRoute(ctx, appName, routePath)
|
||||
return v.Datastore.RemoveRoute(ctx, appID, routePath)
|
||||
}
|
||||
|
||||
// callID will never be empty.
|
||||
|
||||
@@ -29,9 +29,19 @@ func NewMockInit(apps []*models.App, routes []*models.Route, calls []*models.Cal
|
||||
return datastoreutil.NewValidator(&mock{apps, routes, calls, make(map[string][]byte), logs.NewMock()})
|
||||
}
|
||||
|
||||
func (m *mock) GetApp(ctx context.Context, appName string) (app *models.App, err error) {
|
||||
func (m *mock) GetAppID(ctx context.Context, appName string) (string, error) {
|
||||
for _, a := range m.Apps {
|
||||
if a.Name == appName {
|
||||
return a.ID, nil
|
||||
}
|
||||
}
|
||||
|
||||
return "", models.ErrAppsNotFound
|
||||
}
|
||||
|
||||
func (m *mock) GetAppByID(ctx context.Context, appID string) (*models.App, error) {
|
||||
for _, a := range m.Apps {
|
||||
if a.ID == appID {
|
||||
return a, nil
|
||||
}
|
||||
}
|
||||
@@ -63,7 +73,7 @@ func (m *mock) GetApps(ctx context.Context, appFilter *models.AppFilter) ([]*mod
|
||||
}
|
||||
|
||||
func (m *mock) InsertApp(ctx context.Context, app *models.App) (*models.App, error) {
|
||||
if a, _ := m.GetApp(ctx, app.Name); a != nil {
|
||||
if a, _ := m.GetAppByID(ctx, app.ID); a != nil {
|
||||
return nil, models.ErrAppsAlreadyExists
|
||||
}
|
||||
m.Apps = append(m.Apps, app)
|
||||
@@ -71,7 +81,7 @@ func (m *mock) InsertApp(ctx context.Context, app *models.App) (*models.App, err
|
||||
}
|
||||
|
||||
func (m *mock) UpdateApp(ctx context.Context, app *models.App) (*models.App, error) {
|
||||
a, err := m.GetApp(ctx, app.Name)
|
||||
a, err := m.GetAppByID(ctx, app.ID)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
@@ -80,11 +90,11 @@ func (m *mock) UpdateApp(ctx context.Context, app *models.App) (*models.App, err
|
||||
return a.Clone(), nil
|
||||
}
|
||||
|
||||
func (m *mock) RemoveApp(ctx context.Context, appName string) error {
|
||||
m.batchDeleteCalls(ctx, appName)
|
||||
m.batchDeleteRoutes(ctx, appName)
|
||||
func (m *mock) RemoveApp(ctx context.Context, appID string) error {
|
||||
m.batchDeleteCalls(ctx, appID)
|
||||
m.batchDeleteRoutes(ctx, appID)
|
||||
for i, a := range m.Apps {
|
||||
if a.Name == appName {
|
||||
if a.ID == appID {
|
||||
m.Apps = append(m.Apps[:i], m.Apps[i+1:]...)
|
||||
return nil
|
||||
}
|
||||
@@ -92,9 +102,9 @@ func (m *mock) RemoveApp(ctx context.Context, appName string) error {
|
||||
return models.ErrAppsNotFound
|
||||
}
|
||||
|
||||
func (m *mock) GetRoute(ctx context.Context, appName, routePath string) (*models.Route, error) {
|
||||
func (m *mock) GetRoute(ctx context.Context, appID, routePath string) (*models.Route, error) {
|
||||
for _, r := range m.Routes {
|
||||
if r.AppName == appName && r.Path == routePath {
|
||||
if r.AppID == appID && r.Path == routePath {
|
||||
return r, nil
|
||||
}
|
||||
}
|
||||
@@ -107,7 +117,7 @@ func (s sortR) Len() int { return len(s) }
|
||||
func (s sortR) Less(i, j int) bool { return strings.Compare(s[i].Path, s[j].Path) < 0 }
|
||||
func (s sortR) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|
||||
|
||||
func (m *mock) GetRoutesByApp(ctx context.Context, appName string, routeFilter *models.RouteFilter) (routes []*models.Route, err error) {
|
||||
func (m *mock) GetRoutesByApp(ctx context.Context, appID string, routeFilter *models.RouteFilter) (routes []*models.Route, err error) {
|
||||
// sort them all first for cursoring (this is for testing, n is small & mock is not concurrent..)
|
||||
sort.Sort(sortR(m.Routes))
|
||||
|
||||
@@ -116,7 +126,7 @@ func (m *mock) GetRoutesByApp(ctx context.Context, appName string, routeFilter *
|
||||
break
|
||||
}
|
||||
|
||||
if r.AppName == appName &&
|
||||
if r.AppID == appID &&
|
||||
//strings.HasPrefix(r.Path, routeFilter.PathPrefix) && // TODO
|
||||
(routeFilter.Image == "" || routeFilter.Image == r.Image) &&
|
||||
strings.Compare(routeFilter.Cursor, r.Path) < 0 {
|
||||
@@ -128,11 +138,11 @@ func (m *mock) GetRoutesByApp(ctx context.Context, appName string, routeFilter *
|
||||
}
|
||||
|
||||
func (m *mock) InsertRoute(ctx context.Context, route *models.Route) (*models.Route, error) {
|
||||
if _, err := m.GetApp(ctx, route.AppName); err != nil {
|
||||
if _, err := m.GetAppByID(ctx, route.AppID); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if r, _ := m.GetRoute(ctx, route.AppName, route.Path); r != nil {
|
||||
if r, _ := m.GetRoute(ctx, route.AppID, route.Path); r != nil {
|
||||
return nil, models.ErrRoutesAlreadyExists
|
||||
}
|
||||
m.Routes = append(m.Routes, route)
|
||||
@@ -140,7 +150,7 @@ func (m *mock) InsertRoute(ctx context.Context, route *models.Route) (*models.Ro
|
||||
}
|
||||
|
||||
func (m *mock) UpdateRoute(ctx context.Context, route *models.Route) (*models.Route, error) {
|
||||
r, err := m.GetRoute(ctx, route.AppName, route.Path)
|
||||
r, err := m.GetRoute(ctx, route.AppID, route.Path)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
@@ -154,9 +164,9 @@ func (m *mock) UpdateRoute(ctx context.Context, route *models.Route) (*models.Ro
|
||||
return clone, nil
|
||||
}
|
||||
|
||||
func (m *mock) RemoveRoute(ctx context.Context, appName, routePath string) error {
|
||||
func (m *mock) RemoveRoute(ctx context.Context, appID, routePath string) error {
|
||||
for i, r := range m.Routes {
|
||||
if r.AppName == appName && r.Path == routePath {
|
||||
if r.AppID == appID && r.Path == routePath {
|
||||
m.Routes = append(m.Routes[:i], m.Routes[i+1:]...)
|
||||
return nil
|
||||
}
|
||||
@@ -190,7 +200,7 @@ func equivalentCalls(expected *models.Call, actual *models.Call) bool {
|
||||
time.Time(expected.StartedAt).Unix() == time.Time(actual.StartedAt).Unix() &&
|
||||
time.Time(expected.CompletedAt).Unix() == time.Time(actual.CompletedAt).Unix() &&
|
||||
expected.Status == actual.Status &&
|
||||
expected.AppName == actual.AppName &&
|
||||
expected.AppID == actual.AppID &&
|
||||
expected.Path == actual.Path &&
|
||||
expected.Error == actual.Error &&
|
||||
len(expected.Stats) == len(actual.Stats)
|
||||
@@ -200,7 +210,7 @@ func equivalentCalls(expected *models.Call, actual *models.Call) bool {
|
||||
|
||||
func (m *mock) UpdateCall(ctx context.Context, from *models.Call, to *models.Call) error {
|
||||
for _, t := range m.Calls {
|
||||
if t.ID == from.ID && t.AppName == from.AppName {
|
||||
if t.ID == from.ID && t.AppID == from.AppID {
|
||||
if equivalentCalls(from, t) {
|
||||
*t = *to
|
||||
return nil
|
||||
@@ -211,9 +221,9 @@ func (m *mock) UpdateCall(ctx context.Context, from *models.Call, to *models.Cal
|
||||
return models.ErrCallNotFound
|
||||
}
|
||||
|
||||
func (m *mock) GetCall(ctx context.Context, appName, callID string) (*models.Call, error) {
|
||||
func (m *mock) GetCall(ctx context.Context, appID, callID string) (*models.Call, error) {
|
||||
for _, t := range m.Calls {
|
||||
if t.ID == callID && t.AppName == appName {
|
||||
if t.ID == callID && t.AppID == appID {
|
||||
return t, nil
|
||||
}
|
||||
}
|
||||
@@ -238,7 +248,7 @@ func (m *mock) GetCalls(ctx context.Context, filter *models.CallFilter) ([]*mode
|
||||
break
|
||||
}
|
||||
|
||||
if (filter.AppName == "" || c.AppName == filter.AppName) &&
|
||||
if (filter.AppID == "" || c.AppID == filter.AppID) &&
|
||||
(filter.Path == "" || filter.Path == c.Path) &&
|
||||
(time.Time(filter.FromTime).IsZero() || time.Time(filter.FromTime).Before(time.Time(c.CreatedAt))) &&
|
||||
(time.Time(filter.ToTime).IsZero() || time.Time(c.CreatedAt).Before(time.Time(filter.ToTime))) &&
|
||||
@@ -251,10 +261,10 @@ func (m *mock) GetCalls(ctx context.Context, filter *models.CallFilter) ([]*mode
|
||||
return calls, nil
|
||||
}
|
||||
|
||||
func (m *mock) batchDeleteCalls(ctx context.Context, appName string) error {
|
||||
func (m *mock) batchDeleteCalls(ctx context.Context, appID string) error {
|
||||
newCalls := []*models.Call{}
|
||||
for _, c := range m.Calls {
|
||||
if c.AppName != appName {
|
||||
if c.AppID != appID || c.ID != appID {
|
||||
newCalls = append(newCalls, c)
|
||||
}
|
||||
}
|
||||
@@ -262,10 +272,10 @@ func (m *mock) batchDeleteCalls(ctx context.Context, appName string) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *mock) batchDeleteRoutes(ctx context.Context, appName string) error {
|
||||
func (m *mock) batchDeleteRoutes(ctx context.Context, appID string) error {
|
||||
newRoutes := []*models.Route{}
|
||||
for _, c := range m.Routes {
|
||||
if c.AppName != appName {
|
||||
if c.AppID != appID {
|
||||
newRoutes = append(newRoutes, c)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -111,7 +111,8 @@ func migrate(ctx context.Context, db *sqlx.DB, migs []Migration, up bool) error
|
||||
}
|
||||
for _, m := range migs {
|
||||
// skip over migrations we have run
|
||||
if (up && curVersion < m.Version()) || (!up && curVersion >= m.Version()) {
|
||||
mVersion := m.Version()
|
||||
if (up && curVersion < mVersion) || (!up && curVersion >= mVersion) {
|
||||
|
||||
// do each individually, for large migrations it's better to checkpoint
|
||||
// than to try to do them all in one big go.
|
||||
|
||||
159
api/datastore/sql/migrations/10_add_app_id.go
Normal file
159
api/datastore/sql/migrations/10_add_app_id.go
Normal file
@@ -0,0 +1,159 @@
|
||||
package migrations
|
||||
|
||||
import (
|
||||
"context"
|
||||
"database/sql"
|
||||
"fmt"
|
||||
"github.com/fnproject/fn/api/datastore/sql/migratex"
|
||||
"github.com/fnproject/fn/api/id"
|
||||
"github.com/fnproject/fn/api/models"
|
||||
"github.com/jmoiron/sqlx"
|
||||
)
|
||||
|
||||
func up10(ctx context.Context, tx *sqlx.Tx) error {
|
||||
addAppIDStatements := []string{
|
||||
"ALTER TABLE apps ADD id VARCHAR(256);",
|
||||
"ALTER TABLE calls ADD app_id VARCHAR(256);",
|
||||
"ALTER TABLE logs ADD app_id VARCHAR(256);",
|
||||
"ALTER TABLE routes ADD app_id VARCHAR(256);",
|
||||
}
|
||||
for _, statement := range addAppIDStatements {
|
||||
_, err := tx.ExecContext(ctx, statement)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
rows, err := tx.QueryxContext(ctx, "SELECT DISTINCT name FROM apps;")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
res := []*models.App{}
|
||||
for rows.Next() {
|
||||
|
||||
var app models.App
|
||||
err := rows.StructScan(&app)
|
||||
if err != nil {
|
||||
if err == sql.ErrNoRows {
|
||||
return nil
|
||||
}
|
||||
return err
|
||||
}
|
||||
app.ID = id.New().String()
|
||||
res = append(res, &app)
|
||||
}
|
||||
err = rows.Close()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if err := rows.Err(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// it is required for some reason, can't do this within the rows iteration.
|
||||
for _, app := range res {
|
||||
query := tx.Rebind(`UPDATE apps SET id=:id WHERE name=:name`)
|
||||
_, err = tx.NamedExecContext(ctx, query, app)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
for _, t := range []string{"routes", "calls", "logs"} {
|
||||
q := fmt.Sprintf(`UPDATE %s SET app_id=:id WHERE app_name=:name;`, t)
|
||||
_, err = tx.NamedExecContext(ctx, tx.Rebind(q), app)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dropAppNameStatements := []string{
|
||||
"ALTER TABLE routes DROP COLUMN app_name;",
|
||||
"ALTER TABLE calls DROP COLUMN app_name;",
|
||||
"ALTER TABLE logs DROP COLUMN app_name;",
|
||||
}
|
||||
for _, statement := range dropAppNameStatements {
|
||||
_, err := tx.ExecContext(ctx, statement)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func down10(ctx context.Context, tx *sqlx.Tx) error {
|
||||
|
||||
addAppNameStatements := []string{
|
||||
"ALTER TABLE calls ADD app_name VARCHAR(256);",
|
||||
"ALTER TABLE logs ADD app_name VARCHAR(256);",
|
||||
"ALTER TABLE routes ADD app_name VARCHAR(256);",
|
||||
}
|
||||
for _, statement := range addAppNameStatements {
|
||||
_, err := tx.ExecContext(ctx, statement)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
rows, err := tx.QueryxContext(ctx, "SELECT DISTINCT id, name FROM apps;")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
res := []*models.App{}
|
||||
for rows.Next() {
|
||||
var app models.App
|
||||
err := rows.StructScan(&app)
|
||||
if err != nil {
|
||||
if err == sql.ErrNoRows {
|
||||
return nil
|
||||
}
|
||||
return err
|
||||
}
|
||||
res = append(res, &app)
|
||||
}
|
||||
err = rows.Close()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if err := rows.Err(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// it is required for some reason, can't do this within the rows iteration.
|
||||
for _, app := range res {
|
||||
for _, t := range []string{"routes", "calls", "logs"} {
|
||||
q := "UPDATE " + t + " SET app_name=:name WHERE app_id=:id;"
|
||||
_, err = tx.NamedExecContext(ctx, tx.Rebind(q), app)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
removeAppIDStatements := []string{
|
||||
"ALTER TABLE logs DROP COLUMN app_id;",
|
||||
"ALTER TABLE calls DROP COLUMN app_id;",
|
||||
"ALTER TABLE routes DROP COLUMN app_id;",
|
||||
"ALTER TABLE apps DROP COLUMN id;",
|
||||
}
|
||||
for _, statement := range removeAppIDStatements {
|
||||
_, err := tx.ExecContext(ctx, statement)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
Migrations = append(Migrations, &migratex.MigFields{
|
||||
VersionFunc: vfunc(10),
|
||||
UpFunc: up10,
|
||||
DownFunc: down10,
|
||||
})
|
||||
}
|
||||
@@ -39,7 +39,7 @@ import (
|
||||
// with migrations (sadly, need complex transaction)
|
||||
|
||||
var tables = [...]string{`CREATE TABLE IF NOT EXISTS routes (
|
||||
app_name varchar(256) NOT NULL,
|
||||
app_id varchar(256) NOT NULL,
|
||||
path varchar(256) NOT NULL,
|
||||
image varchar(256) NOT NULL,
|
||||
format varchar(16) NOT NULL,
|
||||
@@ -53,10 +53,11 @@ var tables = [...]string{`CREATE TABLE IF NOT EXISTS routes (
|
||||
annotations text NOT NULL,
|
||||
created_at text,
|
||||
updated_at varchar(256),
|
||||
PRIMARY KEY (app_name, path)
|
||||
PRIMARY KEY (app_id, path)
|
||||
);`,
|
||||
|
||||
`CREATE TABLE IF NOT EXISTS apps (
|
||||
id varchar(256),
|
||||
name varchar(256) NOT NULL PRIMARY KEY,
|
||||
config text NOT NULL,
|
||||
annotations text NOT NULL,
|
||||
@@ -70,7 +71,7 @@ var tables = [...]string{`CREATE TABLE IF NOT EXISTS routes (
|
||||
completed_at varchar(256) NOT NULL,
|
||||
status varchar(256) NOT NULL,
|
||||
id varchar(256) NOT NULL,
|
||||
app_name varchar(256) NOT NULL,
|
||||
app_id varchar(256) NOT NULL,
|
||||
path varchar(256) NOT NULL,
|
||||
stats text,
|
||||
error text,
|
||||
@@ -79,14 +80,16 @@ var tables = [...]string{`CREATE TABLE IF NOT EXISTS routes (
|
||||
|
||||
`CREATE TABLE IF NOT EXISTS logs (
|
||||
id varchar(256) NOT NULL PRIMARY KEY,
|
||||
app_name varchar(256) NOT NULL,
|
||||
app_id varchar(256) NOT NULL,
|
||||
log text NOT NULL
|
||||
);`,
|
||||
}
|
||||
|
||||
const (
|
||||
routeSelector = `SELECT app_name, path, image, format, memory, cpus, type, timeout, idle_timeout, headers, config, annotations, created_at, updated_at FROM routes`
|
||||
callSelector = `SELECT id, created_at, started_at, completed_at, status, app_name, path, stats, error FROM calls`
|
||||
routeSelector = `SELECT app_id, path, image, format, memory, type, cpus, timeout, idle_timeout, headers, config, annotations, created_at, updated_at FROM routes`
|
||||
callSelector = `SELECT id, created_at, started_at, completed_at, status, app_id, path, stats, error FROM calls`
|
||||
appIDSelector = `SELECT id, name, config, annotations, created_at, updated_at FROM apps WHERE id=?`
|
||||
ensureAppSelector = `SELECT id FROM apps WHERE name=?`
|
||||
)
|
||||
|
||||
type sqlStore struct {
|
||||
@@ -252,8 +255,25 @@ func (ds *sqlStore) clear() error {
|
||||
})
|
||||
}
|
||||
|
||||
func (ds *sqlStore) GetAppID(ctx context.Context, appName string) (string, error) {
|
||||
var app models.App
|
||||
query := ds.db.Rebind(ensureAppSelector)
|
||||
row := ds.db.QueryRowxContext(ctx, query, appName)
|
||||
|
||||
err := row.StructScan(&app)
|
||||
if err == sql.ErrNoRows {
|
||||
return "", models.ErrAppsNotFound
|
||||
}
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
return app.ID, nil
|
||||
}
|
||||
|
||||
func (ds *sqlStore) InsertApp(ctx context.Context, app *models.App) (*models.App, error) {
|
||||
query := ds.db.Rebind(`INSERT INTO apps (
|
||||
id,
|
||||
name,
|
||||
config,
|
||||
annotations,
|
||||
@@ -261,6 +281,7 @@ func (ds *sqlStore) InsertApp(ctx context.Context, app *models.App) (*models.App
|
||||
updated_at
|
||||
)
|
||||
VALUES (
|
||||
:id,
|
||||
:name,
|
||||
:config,
|
||||
:annotations,
|
||||
@@ -290,17 +311,19 @@ func (ds *sqlStore) InsertApp(ctx context.Context, app *models.App) (*models.App
|
||||
}
|
||||
|
||||
func (ds *sqlStore) UpdateApp(ctx context.Context, newapp *models.App) (*models.App, error) {
|
||||
app := &models.App{Name: newapp.Name}
|
||||
var app models.App
|
||||
err := ds.Tx(func(tx *sqlx.Tx) error {
|
||||
// NOTE: must query whole object since we're returning app, Update logic
|
||||
// must only modify modifiable fields (as seen here). need to fix brittle..
|
||||
query := tx.Rebind(`SELECT name, config, annotations, created_at, updated_at FROM apps WHERE name=?`)
|
||||
row := tx.QueryRowxContext(ctx, query, app.Name)
|
||||
|
||||
err := row.StructScan(app)
|
||||
query := tx.Rebind(appIDSelector)
|
||||
row := tx.QueryRowxContext(ctx, query, newapp.ID)
|
||||
|
||||
err := row.StructScan(&app)
|
||||
if err == sql.ErrNoRows {
|
||||
return models.ErrAppsNotFound
|
||||
} else if err != nil {
|
||||
}
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
@@ -329,12 +352,12 @@ func (ds *sqlStore) UpdateApp(ctx context.Context, newapp *models.App) (*models.
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return app, nil
|
||||
return &app, nil
|
||||
}
|
||||
|
||||
func (ds *sqlStore) RemoveApp(ctx context.Context, appName string) error {
|
||||
func (ds *sqlStore) RemoveApp(ctx context.Context, appID string) error {
|
||||
return ds.Tx(func(tx *sqlx.Tx) error {
|
||||
res, err := tx.ExecContext(ctx, tx.Rebind(`DELETE FROM apps WHERE name=?`), appName)
|
||||
res, err := tx.ExecContext(ctx, tx.Rebind(`DELETE FROM apps WHERE id=?`), appID)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
@@ -347,33 +370,34 @@ func (ds *sqlStore) RemoveApp(ctx context.Context, appName string) error {
|
||||
}
|
||||
|
||||
deletes := []string{
|
||||
`DELETE FROM logs WHERE app_name=?`,
|
||||
`DELETE FROM calls WHERE app_name=?`,
|
||||
`DELETE FROM routes WHERE app_name=?`,
|
||||
`DELETE FROM logs WHERE app_id=?`,
|
||||
`DELETE FROM calls WHERE app_id=?`,
|
||||
`DELETE FROM routes WHERE app_id=?`,
|
||||
}
|
||||
|
||||
for _, stmt := range deletes {
|
||||
_, err := tx.ExecContext(ctx, tx.Rebind(stmt), appName)
|
||||
_, err := tx.ExecContext(ctx, tx.Rebind(stmt), appID)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
func (ds *sqlStore) GetApp(ctx context.Context, name string) (*models.App, error) {
|
||||
query := ds.db.Rebind(`SELECT name, config, annotations, created_at, updated_at FROM apps WHERE name=?`)
|
||||
row := ds.db.QueryRowxContext(ctx, query, name)
|
||||
func (ds *sqlStore) GetAppByID(ctx context.Context, appID string) (*models.App, error) {
|
||||
var app models.App
|
||||
query := ds.db.Rebind(appIDSelector)
|
||||
row := ds.db.QueryRowxContext(ctx, query, appID)
|
||||
|
||||
var res models.App
|
||||
err := row.StructScan(&res)
|
||||
err := row.StructScan(&app)
|
||||
if err == sql.ErrNoRows {
|
||||
return nil, models.ErrAppsNotFound
|
||||
} else if err != nil {
|
||||
}
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &res, nil
|
||||
return &app, err
|
||||
}
|
||||
|
||||
// GetApps retrieves an array of apps according to a specific filter.
|
||||
@@ -413,15 +437,15 @@ func (ds *sqlStore) GetApps(ctx context.Context, filter *models.AppFilter) ([]*m
|
||||
|
||||
func (ds *sqlStore) InsertRoute(ctx context.Context, route *models.Route) (*models.Route, error) {
|
||||
err := ds.Tx(func(tx *sqlx.Tx) error {
|
||||
query := tx.Rebind(`SELECT 1 FROM apps WHERE name=?`)
|
||||
r := tx.QueryRowContext(ctx, query, route.AppName)
|
||||
query := tx.Rebind(`SELECT 1 FROM apps WHERE id=?`)
|
||||
r := tx.QueryRowContext(ctx, query, route.AppID)
|
||||
if err := r.Scan(new(int)); err != nil {
|
||||
if err == sql.ErrNoRows {
|
||||
return models.ErrAppsNotFound
|
||||
}
|
||||
}
|
||||
query = tx.Rebind(`SELECT 1 FROM routes WHERE app_name=? AND path=?`)
|
||||
same, err := tx.QueryContext(ctx, query, route.AppName, route.Path)
|
||||
query = tx.Rebind(`SELECT 1 FROM routes WHERE app_id=? AND path=?`)
|
||||
same, err := tx.QueryContext(ctx, query, route.AppID, route.Path)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
@@ -431,7 +455,7 @@ func (ds *sqlStore) InsertRoute(ctx context.Context, route *models.Route) (*mode
|
||||
}
|
||||
|
||||
query = tx.Rebind(`INSERT INTO routes (
|
||||
app_name,
|
||||
app_id,
|
||||
path,
|
||||
image,
|
||||
format,
|
||||
@@ -447,7 +471,7 @@ func (ds *sqlStore) InsertRoute(ctx context.Context, route *models.Route) (*mode
|
||||
updated_at
|
||||
)
|
||||
VALUES (
|
||||
:app_name,
|
||||
:app_id,
|
||||
:path,
|
||||
:image,
|
||||
:format,
|
||||
@@ -474,8 +498,8 @@ func (ds *sqlStore) InsertRoute(ctx context.Context, route *models.Route) (*mode
|
||||
func (ds *sqlStore) UpdateRoute(ctx context.Context, newroute *models.Route) (*models.Route, error) {
|
||||
var route models.Route
|
||||
err := ds.Tx(func(tx *sqlx.Tx) error {
|
||||
query := tx.Rebind(fmt.Sprintf("%s WHERE app_name=? AND path=?", routeSelector))
|
||||
row := tx.QueryRowxContext(ctx, query, newroute.AppName, newroute.Path)
|
||||
query := tx.Rebind(fmt.Sprintf("%s WHERE app_id=? AND path=?", routeSelector))
|
||||
row := tx.QueryRowxContext(ctx, query, newroute.AppID, newroute.Path)
|
||||
|
||||
err := row.StructScan(&route)
|
||||
if err == sql.ErrNoRows {
|
||||
@@ -502,7 +526,7 @@ func (ds *sqlStore) UpdateRoute(ctx context.Context, newroute *models.Route) (*m
|
||||
config = :config,
|
||||
annotations = :annotations,
|
||||
updated_at = :updated_at
|
||||
WHERE app_name=:app_name AND path=:path;`)
|
||||
WHERE app_id=:app_id AND path=:path;`)
|
||||
|
||||
res, err := tx.NamedExecContext(ctx, query, &route)
|
||||
if err != nil {
|
||||
@@ -525,9 +549,9 @@ func (ds *sqlStore) UpdateRoute(ctx context.Context, newroute *models.Route) (*m
|
||||
return &route, nil
|
||||
}
|
||||
|
||||
func (ds *sqlStore) RemoveRoute(ctx context.Context, appName, routePath string) error {
|
||||
query := ds.db.Rebind(`DELETE FROM routes WHERE path = ? AND app_name = ?`)
|
||||
res, err := ds.db.ExecContext(ctx, query, routePath, appName)
|
||||
func (ds *sqlStore) RemoveRoute(ctx context.Context, appID string, routePath string) error {
|
||||
query := ds.db.Rebind(`DELETE FROM routes WHERE path = ? AND app_id = ?`)
|
||||
res, err := ds.db.ExecContext(ctx, query, routePath, appID)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
@@ -544,10 +568,10 @@ func (ds *sqlStore) RemoveRoute(ctx context.Context, appName, routePath string)
|
||||
return nil
|
||||
}
|
||||
|
||||
func (ds *sqlStore) GetRoute(ctx context.Context, appName, routePath string) (*models.Route, error) {
|
||||
rSelectCondition := "%s WHERE app_name=? AND path=?"
|
||||
func (ds *sqlStore) GetRoute(ctx context.Context, appID, routePath string) (*models.Route, error) {
|
||||
rSelectCondition := "%s WHERE app_id=? AND path=?"
|
||||
query := ds.db.Rebind(fmt.Sprintf(rSelectCondition, routeSelector))
|
||||
row := ds.db.QueryRowxContext(ctx, query, appName, routePath)
|
||||
row := ds.db.QueryRowxContext(ctx, query, appID, routePath)
|
||||
|
||||
var route models.Route
|
||||
err := row.StructScan(&route)
|
||||
@@ -560,13 +584,13 @@ func (ds *sqlStore) GetRoute(ctx context.Context, appName, routePath string) (*m
|
||||
}
|
||||
|
||||
// GetRoutesByApp retrieves a route with a specific app name.
|
||||
func (ds *sqlStore) GetRoutesByApp(ctx context.Context, appName string, filter *models.RouteFilter) ([]*models.Route, error) {
|
||||
func (ds *sqlStore) GetRoutesByApp(ctx context.Context, appID string, filter *models.RouteFilter) ([]*models.Route, error) {
|
||||
res := []*models.Route{}
|
||||
if filter == nil {
|
||||
filter = new(models.RouteFilter)
|
||||
}
|
||||
|
||||
filter.AppName = appName
|
||||
filter.AppID = appID
|
||||
filterQuery, args := buildFilterRouteQuery(filter)
|
||||
|
||||
query := fmt.Sprintf("%s %s", routeSelector, filterQuery)
|
||||
@@ -617,7 +641,7 @@ func (ds *sqlStore) InsertCall(ctx context.Context, call *models.Call) error {
|
||||
started_at,
|
||||
completed_at,
|
||||
status,
|
||||
app_name,
|
||||
app_id,
|
||||
path,
|
||||
stats,
|
||||
error
|
||||
@@ -628,7 +652,7 @@ func (ds *sqlStore) InsertCall(ctx context.Context, call *models.Call) error {
|
||||
:started_at,
|
||||
:completed_at,
|
||||
:status,
|
||||
:app_name,
|
||||
:app_id,
|
||||
:path,
|
||||
:stats,
|
||||
:error
|
||||
@@ -646,25 +670,25 @@ func equivalentCalls(expected *models.Call, actual *models.Call) bool {
|
||||
time.Time(expected.StartedAt).Unix() == time.Time(actual.StartedAt).Unix() &&
|
||||
time.Time(expected.CompletedAt).Unix() == time.Time(actual.CompletedAt).Unix() &&
|
||||
expected.Status == actual.Status &&
|
||||
expected.AppName == actual.AppName &&
|
||||
expected.Path == actual.Path &&
|
||||
expected.Error == actual.Error &&
|
||||
len(expected.Stats) == len(actual.Stats)
|
||||
len(expected.Stats) == len(actual.Stats) &&
|
||||
expected.AppID == actual.AppID
|
||||
// TODO: We don't do comparisons of individual Stats. We probably should.
|
||||
return equivalentFields
|
||||
}
|
||||
|
||||
func (ds *sqlStore) UpdateCall(ctx context.Context, from *models.Call, to *models.Call) error {
|
||||
// Assert that from and to are supposed to be the same call
|
||||
if from.ID != to.ID || from.AppName != to.AppName {
|
||||
if from.ID != to.ID || from.AppID != to.AppID {
|
||||
return errors.New("assertion error: 'from' and 'to' calls refer to different app/ID")
|
||||
}
|
||||
|
||||
// Atomic update
|
||||
err := ds.Tx(func(tx *sqlx.Tx) error {
|
||||
var call models.Call
|
||||
query := tx.Rebind(fmt.Sprintf(`%s WHERE id=? AND app_name=?`, callSelector))
|
||||
row := tx.QueryRowxContext(ctx, query, from.ID, from.AppName)
|
||||
query := tx.Rebind(fmt.Sprintf(`%s WHERE id=? AND app_id=?`, callSelector))
|
||||
row := tx.QueryRowxContext(ctx, query, from.ID, from.AppID)
|
||||
|
||||
err := row.StructScan(&call)
|
||||
if err == sql.ErrNoRows {
|
||||
@@ -686,11 +710,11 @@ func (ds *sqlStore) UpdateCall(ctx context.Context, from *models.Call, to *model
|
||||
started_at = :started_at,
|
||||
completed_at = :completed_at,
|
||||
status = :status,
|
||||
app_name = :app_name,
|
||||
app_id = :app_id,
|
||||
path = :path,
|
||||
stats = :stats,
|
||||
error = :error
|
||||
WHERE id=:id AND app_name=:app_name;`)
|
||||
WHERE id=:id AND app_id=:app_id;`)
|
||||
|
||||
res, err := tx.NamedExecContext(ctx, query, to)
|
||||
if err != nil {
|
||||
@@ -713,10 +737,10 @@ func (ds *sqlStore) UpdateCall(ctx context.Context, from *models.Call, to *model
|
||||
return nil
|
||||
}
|
||||
|
||||
func (ds *sqlStore) GetCall(ctx context.Context, appName, callID string) (*models.Call, error) {
|
||||
query := fmt.Sprintf(`%s WHERE id=? AND app_name=?`, callSelector)
|
||||
func (ds *sqlStore) GetCall(ctx context.Context, appID, callID string) (*models.Call, error) {
|
||||
query := fmt.Sprintf(`%s WHERE id=? AND app_id=?`, callSelector)
|
||||
query = ds.db.Rebind(query)
|
||||
row := ds.db.QueryRowxContext(ctx, query, callID, appName)
|
||||
row := ds.db.QueryRowxContext(ctx, query, callID, appID)
|
||||
|
||||
var call models.Call
|
||||
err := row.StructScan(&call)
|
||||
@@ -754,7 +778,7 @@ func (ds *sqlStore) GetCalls(ctx context.Context, filter *models.CallFilter) ([]
|
||||
return res, nil
|
||||
}
|
||||
|
||||
func (ds *sqlStore) InsertLog(ctx context.Context, appName, callID string, logR io.Reader) error {
|
||||
func (ds *sqlStore) InsertLog(ctx context.Context, appID, callID string, logR io.Reader) error {
|
||||
// coerce this into a string for sql
|
||||
var log string
|
||||
if stringer, ok := logR.(fmt.Stringer); ok {
|
||||
@@ -767,14 +791,15 @@ func (ds *sqlStore) InsertLog(ctx context.Context, appName, callID string, logR
|
||||
log = b.String()
|
||||
}
|
||||
|
||||
query := ds.db.Rebind(`INSERT INTO logs (id, app_name, log) VALUES (?, ?, ?);`)
|
||||
_, err := ds.db.ExecContext(ctx, query, callID, appName, log)
|
||||
query := ds.db.Rebind(`INSERT INTO logs (id, app_id, log) VALUES (?, ?, ?);`)
|
||||
_, err := ds.db.ExecContext(ctx, query, callID, appID, log)
|
||||
|
||||
return err
|
||||
}
|
||||
|
||||
func (ds *sqlStore) GetLog(ctx context.Context, appName, callID string) (io.Reader, error) {
|
||||
query := ds.db.Rebind(`SELECT log FROM logs WHERE id=? AND app_name=?`)
|
||||
row := ds.db.QueryRowContext(ctx, query, callID, appName)
|
||||
func (ds *sqlStore) GetLog(ctx context.Context, appID, callID string) (io.Reader, error) {
|
||||
query := ds.db.Rebind(`SELECT log FROM logs WHERE id=? AND app_id=?`)
|
||||
row := ds.db.QueryRowContext(ctx, query, callID, appID)
|
||||
|
||||
var log string
|
||||
err := row.Scan(&log)
|
||||
@@ -806,7 +831,7 @@ func buildFilterRouteQuery(filter *models.RouteFilter) (string, []interface{}) {
|
||||
}
|
||||
}
|
||||
|
||||
where("app_name=? ", filter.AppName)
|
||||
where("app_id=? ", filter.AppID)
|
||||
where("image=?", filter.Image)
|
||||
where("path>?", filter.Cursor)
|
||||
// where("path LIKE ?%", filter.PathPrefix) TODO needs escaping
|
||||
@@ -857,7 +882,6 @@ func buildFilterAppQuery(filter *models.AppFilter) (string, []interface{}, error
|
||||
fmt.Fprintf(&b, ` LIMIT ?`)
|
||||
args = append(args, filter.PerPage)
|
||||
if len(filter.NameIn) > 0 {
|
||||
// fmt.Println("about to sqlx.in:", b.String(), args)
|
||||
return sqlx.In(b.String(), args...)
|
||||
}
|
||||
return b.String(), args, nil
|
||||
@@ -888,7 +912,7 @@ func buildFilterCallQuery(filter *models.CallFilter) (string, []interface{}) {
|
||||
if !time.Time(filter.FromTime).IsZero() {
|
||||
where("created_at>", filter.FromTime.String())
|
||||
}
|
||||
where("app_name=", filter.AppName)
|
||||
where("app_id=", filter.AppID)
|
||||
where("path=", filter.Path)
|
||||
|
||||
fmt.Fprintf(&b, ` ORDER BY id DESC`) // TODO assert this is indexed
|
||||
|
||||
Reference in New Issue
Block a user