diff --git a/internal/web/templates/index.html b/internal/web/templates/index.html index 1423952..ac6d318 100644 --- a/internal/web/templates/index.html +++ b/internal/web/templates/index.html @@ -41,7 +41,7 @@
Reader user

reader / reader-password

-

Can read protected endpoints and use filters.

+

Can read protected endpoints and use filters.


@@ -63,42 +63,42 @@ Linux / curl
-

Reader user — filtered reads

-
READER_TOKEN=$(curl -s -X POST http://localhost:8080/login \
+          

Reader user examples

+
READER_TOKEN=$(curl -s -X POST https://go-api.poc.fló.fo/login \
   -H 'Content-Type: application/json' \
   -d '{"user_name":"reader","password":"reader-password"}' \
   | sed -n 's/.*"token":"\([^"]*\)".*/\1/p')
 
-curl -s 'http://localhost:8080/api/v1/registrations?location=Tórshavn&limit=5' \
+curl -s 'http://go-api.poc.fló.fo/api/v1/registrations?location=Tórshavn&limit=5' \
   -H "Authorization: $READER_TOKEN"
 
-curl -s 'http://localhost:8080/api/v1/registrations?gender=female&abuse_type=psychological&status=open&limit=10' \
+curl -s 'http://go-api.poc.fló.fo/api/v1/registrations?gender=female&abuse_type=psychological&status=open&limit=10' \
   -H "Authorization: $READER_TOKEN"
 
-curl -s 'http://localhost:8080/api/v1/registrations?from=1989-01-01&to=1990-01-01&offset=20&limit=10' \
+curl -s 'http://go-api.poc.fló.fo/api/v1/registrations?from=1989-01-01&to=1990-01-01&offset=20&limit=10' \
   -H "Authorization: $READER_TOKEN"
 
-curl -s 'http://localhost:8080/api/v1/locations' \
+curl -s 'http://go-api.poc.fló.fo/api/v1/locations' \
   -H "Authorization: $READER_TOKEN"
-

CRUD user — create, update, delete

-
ADMIN_TOKEN=$(curl -s -X POST http://localhost:8080/login \
+          

CRUD user — create, update, and delete examples

+
ADMIN_TOKEN=$(curl -s -X POST https://go-api.poc.fló.fo/login \
   -H 'Content-Type: application/json' \
   -d '{"user_name":"admin","password":"admin-password"}' \
   | sed -n 's/.*"token":"\([^"]*\)".*/\1/p')
 
-CREATED_ID=$(curl -s -X POST http://localhost:8080/api/v1/registrations \
+CREATED_ID=$(curl -s -X POST https://go-api.poc.fló.fo/api/v1/registrations \
   -H "Authorization: $ADMIN_TOKEN" \
   -H 'Content-Type: application/json' \
   -d '{"gender":"unknown","location":"Tórshavn","abuse_type":"psychological","status":"new"}' \
   | sed -n 's/.*"id":"\([^"]*\)".*/\1/p')
 
-curl -s -X PUT "http://localhost:8080/api/v1/registrations/$CREATED_ID" \
+curl -s -X PUT "https://go-api.poc.fló.fo/api/v1/registrations/$CREATED_ID" \
   -H "Authorization: $ADMIN_TOKEN" \
   -H 'Content-Type: application/json' \
   -d '{"gender":"female","location":"Skopun","abuse_type":"digital","status":"referred"}'
 
-curl -s -X DELETE "http://localhost:8080/api/v1/registrations/$CREATED_ID" \
+curl -s -X DELETE "https://go-api.poc.fló.fo/api/v1/registrations/$CREATED_ID" \
   -H "Authorization: $ADMIN_TOKEN"
@@ -108,35 +108,35 @@ curl -s -X DELETE "http://localhost:8080/api/v1/registrations/$CREATED_ID" \ Windows / PowerShell
-

Reader user — filtered reads

+

Reader user examples

$reader = Invoke-RestMethod `
   -Method Post `
-  -Uri "http://localhost:8080/login" `
+  -Uri "https://go-api.poc.fló.fo/login" `
   -ContentType "application/json" `
   -Body '{"user_name":"reader","password":"reader-password"}'
 
 $READER_TOKEN = $reader.token
 
 Invoke-RestMethod `
-  -Uri "http://localhost:8080/api/v1/registrations?location=Tórshavn&limit=5" `
+  -Uri "https://go-api.poc.fló.fo/api/v1/registrations?location=Tórshavn&limit=5" `
   -Headers @{Authorization=$READER_TOKEN}
 
 Invoke-RestMethod `
-  -Uri "http://localhost:8080/api/v1/registrations?gender=female&abuse_type=psychological&status=open&limit=10" `
+  -Uri "https://go-api.poc.fló.fo/api/v1/registrations?gender=female&abuse_type=psychological&status=open&limit=10" `
   -Headers @{Authorization=$READER_TOKEN}
 
 Invoke-RestMethod `
-  -Uri "http://localhost:8080/api/v1/registrations?from=1989-01-01&to=1990-01-01&offset=20&limit=10" `
+  -Uri "https://go-api.poc.fló.fo/api/v1/registrations?from=1989-01-01&to=1990-01-01&offset=20&limit=10" `
   -Headers @{Authorization=$READER_TOKEN}
 
 Invoke-RestMethod `
-  -Uri "http://localhost:8080/api/v1/locations" `
+  -Uri "https://go-api.poc.fló.fo/api/v1/locations" `
   -Headers @{Authorization=$READER_TOKEN}
-

CRUD user — create, update, delete

+

CRUD user — create, update, and delete examples

$admin = Invoke-RestMethod `
   -Method Post `
-  -Uri "http://localhost:8080/login" `
+  -Uri "https://go-api.poc.fló.fo/login" `
   -ContentType "application/json" `
   -Body '{"user_name":"admin","password":"admin-password"}'
 
@@ -144,7 +144,7 @@ $ADMIN_TOKEN = $admin.token
 
 $created = Invoke-RestMethod `
   -Method Post `
-  -Uri "http://localhost:8080/api/v1/registrations" `
+  -Uri "https://go-api.poc.fló.fo/api/v1/registrations" `
   -Headers @{Authorization=$ADMIN_TOKEN} `
   -ContentType "application/json" `
   -Body '{"gender":"unknown","location":"Tórshavn","abuse_type":"psychological","status":"new"}'
@@ -153,14 +153,14 @@ $CREATED_ID = $created.id
 
 Invoke-RestMethod `
   -Method Put `
-  -Uri "http://localhost:8080/api/v1/registrations/$CREATED_ID" `
+  -Uri "https://go-api.poc.fló.fo/api/v1/registrations/$CREATED_ID" `
   -Headers @{Authorization=$ADMIN_TOKEN} `
   -ContentType "application/json" `
   -Body '{"gender":"female","location":"Skopun","abuse_type":"digital","status":"referred"}'
 
 Invoke-RestMethod `
   -Method Delete `
-  -Uri "http://localhost:8080/api/v1/registrations/$CREATED_ID" `
+  -Uri "https://go-api.poc.fló.fo/api/v1/registrations/$CREATED_ID" `
   -Headers @{Authorization=$ADMIN_TOKEN}
diff --git a/local/abuse-registration-poc/abuse-registration-poc b/local/abuse-registration-poc/abuse-registration-poc index 4ede4d3..993905c 100755 Binary files a/local/abuse-registration-poc/abuse-registration-poc and b/local/abuse-registration-poc/abuse-registration-poc differ