Compare commits
70 Commits
Author | SHA1 | Date | |
---|---|---|---|
95908c9290 | |||
3c9c24f30b | |||
16c7852972 | |||
0c7ab9524d | |||
7fb26bab97 | |||
ca70773a8c | |||
a0f9670688 | |||
2fd45ac35c | |||
3844e97c48 | |||
3416d2b85b | |||
f29b1a0967 | |||
e3f214d0da | |||
c987d66504 | |||
bc06fc54bb | |||
99a4c1fc94 | |||
87ce9cc4d4 | |||
c2c4c8473d | |||
bb89f519e0 | |||
20e0a0b09e | |||
1449e1ffdd | |||
526419afb3 | |||
327c64f45a | |||
06e3bb5ea3 | |||
6a77efe2cf | |||
a1dc067d17 | |||
23600cedee | |||
c032bf10e7 | |||
f4f695ce80 | |||
c685f55d15 | |||
e9de9aebf3 | |||
cf69ff2fa1 | |||
baf37698b3 | |||
3dd7169b8b | |||
53a11b9e57 | |||
ff17d9bf7a | |||
9c9fe8786c | |||
b64a3996e5 | |||
c8abfd00d0 | |||
b4b125d750 | |||
826f0eaa73 | |||
adddef3188 | |||
3e2faf9554 | |||
744ad9211b | |||
35a116abbb | |||
4cb5b8d814 | |||
efb86cf6ce | |||
c6863293c5 | |||
ce582383c3 | |||
31053c1014 | |||
f5b891b966 | |||
74b8a42d29 | |||
8af6c65c9b | |||
e14097117f | |||
c6d8d14a1f | |||
ff3c1cf04e | |||
8ac1cdf476 | |||
c28eb7b240 | |||
31326d40c8 | |||
716f09681c | |||
ead77534ce | |||
c5daa76102 | |||
cfd5463b4d | |||
5c81d756df | |||
cf60793395 | |||
0a8f701c3c | |||
a4b798cec4 | |||
5f257e9b4a | |||
7e5827a7a2 | |||
793dbcc611 | |||
d37dc77490 |
8
.gitignore
vendored
8
.gitignore
vendored
@ -3,6 +3,8 @@ api/personal_measure_api
|
||||
api/postgres.container.id
|
||||
api/src/main/nim/personal_measure_api
|
||||
api/src/main/nim/personal_measure_apipkg/db
|
||||
api/personal_measure_api.config.dev.json
|
||||
api/personal_measure_api.config.prod.json
|
||||
|
||||
.DS_Store
|
||||
node_modules
|
||||
@ -26,3 +28,9 @@ yarn-error.log*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
# Terrform files
|
||||
.terraform/
|
||||
|
||||
# API Testing Files
|
||||
api/temp/
|
||||
|
30
Makefile
30
Makefile
@ -1,32 +1,32 @@
|
||||
VERSION:=$(shell git describe --always)
|
||||
TARGET_ENV=prod
|
||||
TARGET_ENV ?= dev
|
||||
|
||||
build: dist/personal-measure-api.tar.gz dist/personal-measure-web.tar.gz
|
||||
|
||||
dist/personal-measure-api.tar.gz:
|
||||
-mkdir dist
|
||||
make -C api personal_measure_api
|
||||
tar czf dist/personal-measure-api-${VERSION}.tar.gz -C api personal_measure_api
|
||||
cp dist/personal-measure-api-${VERSION}.tar.gz dist/personal-measure-api.tar.gz
|
||||
clean:
|
||||
-rm -r dist
|
||||
-rm -r web/dist
|
||||
-docker container prune
|
||||
-docker image prune
|
||||
|
||||
update-version:
|
||||
operations/update-version.sh
|
||||
|
||||
dist/personal-measure-web.tar.gz:
|
||||
-mkdir dist
|
||||
(cd web && npm run build)
|
||||
TARGET_ENV=$(TARGET_ENV) make -C web build
|
||||
tar czf dist/personal-measure-web-${VERSION}.tar.gz -C web/dist .
|
||||
cp dist/personal-measure-web-${VERSION}.tar.gz dist/personal-measure-web.tar.gz
|
||||
|
||||
deploy-api: dist/personal-measure-api.tar.gz
|
||||
mkdir -p temp-deploy/personal-measure-api-${VERSION}
|
||||
tar xzf dist/personal-measure-api-${VERSION}.tar.gz -C temp-deploy/personal-measure-api-${VERSION}
|
||||
-ssh pmapi@pmapi.jdb-labs.com "sudo systemctl stop personal_measure_api.$(TARGET_ENV).service"
|
||||
scp temp-deploy/personal-measure-api-${VERSION}/personal_measure_api pmapi@pmapi.jdb-labs.com:/home/pmapi/$(TARGET_ENV)/personal_measure_api
|
||||
ssh pmapi@pmapi.jdb-labs.com "sudo systemctl start personal_measure_api.$(TARGET_ENV).service"
|
||||
rm -r temp-deploy
|
||||
deploy-api:
|
||||
make -C api personal_measure_api-image push-image
|
||||
cd operations/terraform && terraform apply -target module.${TARGET_ENV}_env.aws_ecs_task_definition.pmapi -target module.${TARGET_ENV}_env.aws_ecs_service.pmapi
|
||||
|
||||
deploy-web: dist/personal-measure-web.tar.gz
|
||||
mkdir -p temp-deploy/personal-measure-web-${VERSION}
|
||||
tar xzf dist/personal-measure-web-${VERSION}.tar.gz -C temp-deploy/personal-measure-web-${VERSION}
|
||||
aws s3 sync temp-deploy/personal-measure-web-${VERSION} s3://pm.jdb-labs.com/$(TARGET_ENV)/webroot
|
||||
aws s3 sync temp-deploy/personal-measure-web-${VERSION} s3://pm.jdb-software.com/$(TARGET_ENV)/webroot
|
||||
TARGET_ENV=${TARGET_ENV} operations/invalidate-cdn-cache.sh
|
||||
rm -r temp-deploy
|
||||
|
||||
deploy: deploy-api deploy-web
|
||||
|
@ -1,26 +1,22 @@
|
||||
FROM 063932952339.dkr.ecr.us-west-2.amazonaws.com/nim-alpine AS build
|
||||
FROM 063932952339.dkr.ecr.us-west-2.amazonaws.com/alpine-nim:nim-1.4.8 AS build
|
||||
MAINTAINER jonathan@jdbernard.com
|
||||
|
||||
# TODO: install db_migrate so we can use it below
|
||||
# RUN nimble install https://git.jdb-labs.com/jdb/db-migrate.git
|
||||
|
||||
#RUN apt-get install -y libssl-dev
|
||||
COPY personal_measure_api.nimble /pm-api/
|
||||
COPY src /pm-api/src
|
||||
WORKDIR /pm-api
|
||||
RUN nimble build -y
|
||||
|
||||
FROM alpine
|
||||
#RUN apt-get install -y postgresql-client
|
||||
EXPOSE 80
|
||||
RUN apk -v --update add --no-cache \
|
||||
ca-certificates \
|
||||
libressl2.7-libssl \
|
||||
libressl2.7-libcrypto \
|
||||
libcrypto1.1 \
|
||||
libssl1.1 \
|
||||
pcre \
|
||||
postgresql-client
|
||||
|
||||
COPY --from=build /pm-api/personal_measure_api /
|
||||
COPY personal_measure_api.config.prod.json /personal_measure_api.config.json
|
||||
COPY personal_measure_api.config.docker.json /personal_measure_api.config.json
|
||||
CMD ["/personal_measure_api", "serve"]
|
||||
|
||||
# TODO: replace the above with something like:
|
||||
|
102
api/Makefile
102
api/Makefile
@ -1,31 +1,123 @@
|
||||
PGSQL_CONTAINER_ID=`cat postgres.container.id`
|
||||
DB_NAME="personal_measure"
|
||||
SOURCES=$(wildcard src/main/nim/*.nim) $(wildcard src/main/nim/personal_measure_apipkg/*.nim)
|
||||
|
||||
serve: personal_measure_api start-postgres
|
||||
# Variables that can be overriden
|
||||
# -------------------------------
|
||||
|
||||
# AWS Account URL for the ECR repository
|
||||
ECR_ACCOUNT_URL ?= 063932952339.dkr.ecr.us-west-2.amazonaws.com
|
||||
|
||||
# The version number that will be tagged the container image. You might want to
|
||||
# override this when doing local development to create local versions that are
|
||||
# reflect changes not yet committed.
|
||||
VERSION ?= `git describe`
|
||||
|
||||
# The port on the host machine (not the container)
|
||||
PORT ?= 8100
|
||||
|
||||
# The name of the database (used then creating a local Postgres container)
|
||||
DB_NAME ?= personal_measure
|
||||
|
||||
# The database connection string. You would change this to point the API at a
|
||||
# different database server (default is the local Postgres container).
|
||||
DB_CONN_STRING ?= host=localhost dbname=$(DB_NAME) user=postgres password=password port=5500
|
||||
|
||||
# The API authentication secret (used for hashing passwords, etc.)
|
||||
AUTH_SECRET ?= 123abc
|
||||
|
||||
|
||||
default: start-postgres serve-docker
|
||||
|
||||
# Building and deploying the API container image
|
||||
# ----------------------------------------------
|
||||
|
||||
personal_measure_api-image: $(SOURCES)
|
||||
# Build the container image.
|
||||
docker image build -t $(ECR_ACCOUNT_URL)/personal_measure_api:$(VERSION) .
|
||||
|
||||
push-image: personal_measure_api-image
|
||||
# Push the container image to the private AWS ECR
|
||||
docker push $(ECR_ACCOUNT_URL)/personal_measure_api:$(VERSION)
|
||||
|
||||
# Running the API locally on bare metal
|
||||
# -------------------------------------
|
||||
|
||||
personal_measure_api: $(SOURCES)
|
||||
# Build the API
|
||||
nimble build
|
||||
|
||||
serve: personal_measure_api
|
||||
# Run the API on this machine. Note that configuration is taken by default
|
||||
# from the `personal_measure_api.config.json` file, but environment variables
|
||||
# specified when running make can be used to override these (to change the
|
||||
# DB_CONN_STRING, for example).
|
||||
./personal_measure_api serve
|
||||
|
||||
# Running the API locally in a container
|
||||
# --------------------------------------
|
||||
|
||||
serve-docker: personal_measure_api-image
|
||||
# Run the API in a docker container. Note that the configuration loaded into
|
||||
# the Docker container defines very little of the actual configuration as
|
||||
# environment variables are used in the deployed environments. Accordingly,
|
||||
# we must specify them explicitly here.
|
||||
docker run \
|
||||
-e AUTH_SECRET=$(AUTH_SECRET) \
|
||||
-e PORT=80 \
|
||||
-e "DB_CONN_STRING=$(DB_CONN_STRING)" \
|
||||
-e 'KNOWN_ORIGINS=["https://curl.localhost"]' \
|
||||
-p 127.0.0.1:$(PORT):80/tcp \
|
||||
$(ECR_ACCOUNT_URL)/personal_measure_api:$(VERSION)
|
||||
|
||||
# Managing Postgres in a local container
|
||||
# --------------------------------------
|
||||
#
|
||||
# This supports local development on this machine. These commands rely on a
|
||||
# file named `postgres.container.id` to track the existing and ID of the
|
||||
# local Postgres instance.
|
||||
|
||||
postgres.container.id:
|
||||
# This creates a new local Postegres container and initializes the PM API
|
||||
# database scheme.
|
||||
docker run --name postgres-$(DB_NAME) -e POSTGRES_PASSWORD=password -p 5500:5432 -d postgres > postgres.container.id
|
||||
sleep 5
|
||||
PGPASSWORD=password psql -p 5500 -U postgres -h localhost -c "CREATE DATABASE $(DB_NAME);"
|
||||
db_migrate up -c database-local.json
|
||||
|
||||
start-postgres: postgres.container.id
|
||||
# Start the existing local Postgres container
|
||||
docker start $(PGSQL_CONTAINER_ID)
|
||||
sleep 1
|
||||
db_migrate up -c database-local.json
|
||||
|
||||
stop-postgres: postgres.container.id
|
||||
# Stop the existing local Postgres container
|
||||
docker stop $(PGSQL_CONTAINER_ID)
|
||||
|
||||
delete-postgres-container:
|
||||
# Delete the local Postgres container. Note that this will destroy any data
|
||||
# in this database instance.
|
||||
-docker stop $(PGSQL_CONTAINER_ID)
|
||||
docker container rm $(PGSQL_CONTAINER_ID)
|
||||
rm postgres.container.id
|
||||
|
||||
connect:
|
||||
connect-postgres:
|
||||
# Connect to the Postgres instance running in the local container
|
||||
PGPASSWORD=password psql -p 5500 -U postgres -h localhost ${DB_NAME}
|
||||
|
||||
personal_measure_api: $(SOURCES)
|
||||
nimble build
|
||||
|
||||
# Utility
|
||||
# -------
|
||||
|
||||
ecr-auth:
|
||||
# Authenticate docker to the AWS private elastic container repository.
|
||||
aws ecr get-login-password --region us-west-2 | docker login --username AWS --password-stdin 063932952339.dkr.ecr.us-west-2.amazonaws.com
|
||||
|
||||
echo-vars:
|
||||
@echo \
|
||||
" ECR_ACCOUNT_URL=$(ECR_ACCOUNT_URL)\n" \
|
||||
"VERSION=$(VERSION)\n" \
|
||||
"PORT=$(PORT)\n" \
|
||||
"DB_NAME=$(DB_NAME)\n" \
|
||||
"DB_CONN_STRING=$(DB_CONN_STRING)\n" \
|
||||
"AUTH_SECRET=$(AUTH_SECRET)\n"
|
||||
|
30
api/README.md
Normal file
30
api/README.md
Normal file
@ -0,0 +1,30 @@
|
||||
## Local Development
|
||||
|
||||
Examples of different local development & testing scenarios:
|
||||
|
||||
- Bare-metal API server, local Postgres container
|
||||
|
||||
make start-postgres
|
||||
make serve
|
||||
|
||||
- Bare-metal API server, different Postgres server
|
||||
|
||||
DB_CONN_STRING="host=<db-hostname> user=pmapi password=<pwd>" make serve
|
||||
|
||||
- Docker API Server, local Postgres container
|
||||
|
||||
make start-postgres
|
||||
VERSION=0.X.0-alpha make serve-docker
|
||||
|
||||
- Docker API server, different Postgres server
|
||||
|
||||
DB_CONN_STRING="host=<db-hostname> user=pmapi password=<pwd>" \
|
||||
VERSION=0.X.0-alpha \
|
||||
make serve-docker
|
||||
|
||||
All of the available `make` targets are documented inline; see the
|
||||
[Makefile](./Makefile) for more details.
|
||||
|
||||
### Using the API CLI wrapper
|
||||
|
||||
The API CLI wrapper
|
5
api/database-dev.json
Normal file
5
api/database-dev.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"driver": "postgres",
|
||||
"connectionString": "host=localhost port=5432 dbname=personal_measure_dev user=pmapi",
|
||||
"sqlDir": "src/main/sql/migrations"
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"driver": "postgres",
|
||||
"connectionString": "host=localhost port=5999 dbname=personal_measure user=postgres",
|
||||
"connectionString": "host=localhost port=5432 dbname=personal_measure user=pmapi",
|
||||
"sqlDir": "src/main/sql/migrations"
|
||||
}
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"debug":false,
|
||||
"port":80,
|
||||
"pwdCost":11
|
||||
}
|
@ -2,6 +2,7 @@
|
||||
"authSecret":"bifekHuffIs3",
|
||||
"dbConnString":"host=localhost port=5500 dbname=personal_measure user=postgres password=password",
|
||||
"debug":true,
|
||||
"port":8081,
|
||||
"pwdCost":11
|
||||
"port":8100,
|
||||
"pwdCost":11,
|
||||
"knownOrigins": [ "https://curl.localhost" ]
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
include "src/main/nim/personal_measure_apipkg/version.nim"
|
||||
|
||||
version = PM_API_VERSION
|
||||
version = "0.11.0"
|
||||
author = "Jonathan Bernard"
|
||||
description = "JDB\'s Personal Measures API"
|
||||
license = "MIT"
|
||||
@ -14,7 +14,8 @@ skipExt = @["nim"]
|
||||
# Dependencies
|
||||
|
||||
requires @["nim >= 0.19.4", "bcrypt", "docopt >= 0.6.8", "isaac >= 0.1.3",
|
||||
"jester >= 0.4.1", "jwt", "tempfile", "uuids >= 0.1.10" ]
|
||||
"jester >= 0.4.3", "jwt", "tempfile", "uuids >= 0.1.10" ]
|
||||
|
||||
requires "https://git.jdb-labs.com/jdb/nim-cli-utils.git >= 0.6.3"
|
||||
requires "https://git.jdb-labs.com/jdb/nim-time-utils.git >= 0.5.0"
|
||||
requires "https://git.jdb-software.com/jdb/nim-cli-utils.git >= 0.6.3"
|
||||
requires "https://git.jdb-software.com/jdb/nim-time-utils.git >= 0.5.2"
|
||||
requires "https://git.jdb-software.com/jdb-software/fiber-orm-nim.git >= 0.3.2"
|
||||
|
@ -27,7 +27,7 @@ proc loadConfig*(args: Table[string, docopt.Value] = initTable[string, docopt.Va
|
||||
try: json = parseFile(filePath)
|
||||
except:
|
||||
json = %DEFAULT_CONFIG
|
||||
if not existsFile(filePath):
|
||||
if not fileExists(filePath):
|
||||
info "created new configuration file \"" & filePath & "\""
|
||||
filePath.writeFile($json)
|
||||
else:
|
||||
@ -40,9 +40,10 @@ proc loadConfig*(args: Table[string, docopt.Value] = initTable[string, docopt.Va
|
||||
authSecret: cfg.getVal("auth-secret"),
|
||||
dbConnString: cfg.getVal("db-conn-string"),
|
||||
debug: "true".startsWith(cfg.getVal("debug", "false").toLower()),
|
||||
port: parseInt(cfg.getVal("port", "8080")),
|
||||
pwdCost: cast[int8](parseInt(cfg.getVal("pwd-cost", "11"))))
|
||||
|
||||
port: parseInt(cfg.getVal("port", "8100")),
|
||||
pwdCost: cast[int8](parseInt(cfg.getVal("pwd-cost", "11"))),
|
||||
knownOrigins: cfg.getVal("known-origins")[1..^2].split(',').mapIt(it[1..^2]))
|
||||
|
||||
proc initContext(args: Table[string, docopt.Value]): PMApiContext =
|
||||
|
||||
var cfg: PMApiConfig
|
||||
@ -109,6 +110,6 @@ Options:
|
||||
if args["serve"]: start(ctx)
|
||||
|
||||
except:
|
||||
fatal "pit: " & getCurrentExceptionMsg()
|
||||
fatal "personal_measure_api: " & getCurrentExceptionMsg()
|
||||
#raise getCurrentException()
|
||||
quit(QuitFailure)
|
||||
|
@ -1,7 +1,9 @@
|
||||
import asyncdispatch, base64, jester, json, jwt, logging, options, sequtils,
|
||||
strutils, times, uuids
|
||||
times, uuids
|
||||
from httpcore import HttpMethod
|
||||
from unicode import capitalize
|
||||
import timeutils except `<`
|
||||
import strutils except capitalize
|
||||
import timeutils
|
||||
|
||||
import ./db, ./configuration, ./models, ./service, ./version
|
||||
|
||||
@ -20,7 +22,7 @@ proc newSession*(user: User): Session =
|
||||
|
||||
template halt(code: HttpCode,
|
||||
headers: RawHeaders,
|
||||
content: string): typed =
|
||||
content: string) =
|
||||
## Immediately replies with the specified request. This means any further
|
||||
## code will not be executed after calling this template in the current
|
||||
## route.
|
||||
@ -32,21 +34,65 @@ template halt(code: HttpCode,
|
||||
result.matched = true
|
||||
break allRoutes
|
||||
|
||||
template jsonResp(code: HttpCode, details: string = "", headers: RawHeaders = @{:} ) =
|
||||
template jsonResp(code: HttpCode, body: string = "", headersToSend: RawHeaders = @{:} ) =
|
||||
|
||||
let reqOrigin =
|
||||
if request.headers.hasKey("Origin"): $(request.headers["Origin"])
|
||||
else: ""
|
||||
|
||||
let corsHeaders =
|
||||
if ctx.cfg.knownOrigins.contains(reqOrigin):
|
||||
@{
|
||||
"Access-Control-Allow-Origin": reqOrigin,
|
||||
"Access-Control-Allow-Credentials": "true",
|
||||
"Access-Control-Allow-Methods": $(request.reqMethod),
|
||||
"Access-Control-Allow-Headers": "DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization"
|
||||
}
|
||||
else: @{:}
|
||||
|
||||
halt(
|
||||
code,
|
||||
headers & @{"Content-Type": JSON},
|
||||
headersToSend & corsHeaders & @{
|
||||
"Content-Type": JSON,
|
||||
"Cache-Control": "no-cache"
|
||||
},
|
||||
body
|
||||
)
|
||||
|
||||
template optionsResp(allowedMethods: seq[HttpMethod]) =
|
||||
|
||||
let reqOrigin =
|
||||
if request.headers.hasKey("Origin"): $(request.headers["Origin"])
|
||||
else: ""
|
||||
|
||||
let corsHeaders =
|
||||
if ctx.cfg.knownOrigins.contains(reqOrigin):
|
||||
@{
|
||||
"Access-Control-Allow-Origin": reqOrigin,
|
||||
"Access-Control-Allow-Credentials": "true",
|
||||
"Access-Control-Allow-Methods": allowedMethods.mapIt($it).join(", "),
|
||||
"Access-Control-Allow-Headers": "DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization"
|
||||
}
|
||||
else: @{:}
|
||||
|
||||
halt(
|
||||
Http200,
|
||||
corsHeaders,
|
||||
""
|
||||
)
|
||||
|
||||
|
||||
template jsonResp(body: string) = jsonResp(Http200, body)
|
||||
|
||||
template statusResp(code: HttpCode, details: string = "", headersToSend: RawHeaders = @{:} ) =
|
||||
jsonResp(
|
||||
code,
|
||||
$(%* {
|
||||
"statusCode": code.int,
|
||||
"status": $code,
|
||||
"details": details
|
||||
})
|
||||
)
|
||||
|
||||
template json500Resp(ex: ref Exception, details: string = ""): void =
|
||||
when not defined(release): debug ex.getStackTrace()
|
||||
error details & ":\n" & ex.msg
|
||||
jsonResp(Http500)
|
||||
}),
|
||||
headersToSend)
|
||||
|
||||
# internal JSON parsing utils
|
||||
proc getIfExists(n: JsonNode, key: string): JsonNode =
|
||||
@ -75,7 +121,7 @@ proc fromJWT*(ctx: PMApiContext, strTok: string): Session =
|
||||
## Validate a given JWT and extract the session data.
|
||||
let jwt = toJWT(strTok)
|
||||
var secret = ctx.cfg.authSecret
|
||||
if not jwt.verify(secret): raiseEx "Unable to verify auth token."
|
||||
if not jwt.verify(secret, HS256): raiseEx "Unable to verify auth token."
|
||||
jwt.verifyTimeClaims()
|
||||
|
||||
# Find the user record (if authenticated)
|
||||
@ -173,10 +219,10 @@ template checkAuth(requiresAdmin = false) =
|
||||
try: session = extractSession(ctx, request)
|
||||
except:
|
||||
debug "Auth failed: " & getCurrentExceptionMsg()
|
||||
jsonResp(Http401, "Unauthorized", @{"WWW-Authenticate": "Bearer"})
|
||||
statusResp(Http401, "Unauthorized", @{"WWW-Authenticate": "Bearer"})
|
||||
|
||||
if requiresAdmin and not session.user.isAdmin:
|
||||
jsonResp(Http401, "Unauthorized", @{"WWW-Authenticate": "Bearer"})
|
||||
statusResp(Http401, "Unauthorized", @{"WWW-Authenticate": "Bearer"})
|
||||
|
||||
proc start*(ctx: PMApiContext): void =
|
||||
|
||||
@ -186,12 +232,16 @@ proc start*(ctx: PMApiContext): void =
|
||||
|
||||
settings:
|
||||
port = Port(ctx.cfg.port)
|
||||
appName = "/api"
|
||||
appName = "/v0"
|
||||
|
||||
routes:
|
||||
|
||||
options "/version": optionsResp(@[HttpGet])
|
||||
|
||||
get "/version":
|
||||
resp($(%("personal_measure_api v" & PM_API_VERSION)), JSON)
|
||||
jsonResp($(%("personal_measure_api v" & PM_API_VERSION)))
|
||||
|
||||
options "/auth-token": optionsResp(@[HttpPost])
|
||||
|
||||
post "/auth-token":
|
||||
|
||||
@ -200,9 +250,11 @@ proc start*(ctx: PMApiContext): void =
|
||||
let email = jsonBody.getOrFail("email").getStr
|
||||
let pwd = jsonBody.getOrFail("password").getStr
|
||||
let authToken = makeAuthToken(ctx, email, pwd)
|
||||
resp($(%authToken), JSON)
|
||||
except JsonParsingError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except: jsonResp(Http401, getCurrentExceptionMsg())
|
||||
jsonResp($(%authToken))
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except: statusResp(Http401, getCurrentExceptionMsg())
|
||||
|
||||
options "/change-pwd": optionsResp(@[HttpPost])
|
||||
|
||||
post "/change-pwd":
|
||||
checkAuth()
|
||||
@ -215,15 +267,17 @@ proc start*(ctx: PMApiContext): void =
|
||||
|
||||
let newHash = hashWithSalt(jsonBody.getOrFail("newPassword").getStr, session.user.salt)
|
||||
session.user.hashedPwd = newHash.hash
|
||||
if ctx.db.updateUser(session.user): jsonResp(Http200)
|
||||
else: jsonResp(Http500, "unable to change pwd")
|
||||
if ctx.db.updateUser(session.user): statusResp(Http200)
|
||||
else: statusResp(Http500, "unable to change pwd")
|
||||
|
||||
except JsonParsingError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except AuthError: jsonResp(Http401, getCurrentExceptionMsg())
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except AuthError: statusResp(Http401, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "internal error changing password: " & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
options "/change-pwd/@userId": optionsResp(@[HttpPost])
|
||||
|
||||
post "/change-pwd/@userId":
|
||||
checkAuth(true)
|
||||
@ -234,22 +288,24 @@ proc start*(ctx: PMApiContext): void =
|
||||
var user = ctx.db.getUser(parseUUID(@"userId"))
|
||||
let newHash = hashWithSalt(jsonBody.getOrFail("newPassword").getStr, user.salt)
|
||||
user.hashedPwd = newHash.hash
|
||||
if ctx.db.updateUser(user): jsonResp(Http200)
|
||||
else: jsonResp(Http500, "unable to change pwd")
|
||||
if ctx.db.updateUser(user): statusResp(Http200)
|
||||
else: statusResp(Http500, "unable to change pwd")
|
||||
|
||||
except ValueError: jsonResp(Http400, "invalid UUID")
|
||||
except JsonParsingError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except AuthError: jsonResp(Http401, getCurrentExceptionMsg())
|
||||
except NotFoundError: jsonResp(Http404, "no such user")
|
||||
except ValueError: statusResp(Http400, "invalid UUID")
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except AuthError: statusResp(Http401, getCurrentExceptionMsg())
|
||||
except NotFoundError: statusResp(Http404, "no such user")
|
||||
except:
|
||||
error "internal error changing password: " & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
options "/user": optionsResp(@[HttpGet, HttpPut])
|
||||
|
||||
get "/user":
|
||||
checkAuth()
|
||||
|
||||
resp(Http200, $(%session.user), JSON)
|
||||
jsonResp($(%session.user))
|
||||
|
||||
put "/user":
|
||||
checkAuth()
|
||||
@ -262,18 +318,20 @@ proc start*(ctx: PMApiContext): void =
|
||||
if jsonBody.hasKey("displayName"):
|
||||
updatedUser.displayName = jsonBody["displayName"].getStr()
|
||||
|
||||
jsonResp(Http200, $(%ctx.db.updateUser(updatedUser)))
|
||||
statusResp(Http200, $(%ctx.db.updateUser(updatedUser)))
|
||||
|
||||
except JsonParsingError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "Could not update user information:\n\t" & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
options "/users": optionsResp(@[HttpGet, HttpPost])
|
||||
|
||||
get "/users":
|
||||
checkAuth(true)
|
||||
|
||||
resp(Http200, $(%ctx.db.getAllUsers()))
|
||||
jsonResp($(%ctx.db.getAllUsers()))
|
||||
|
||||
post "/users":
|
||||
checkAuth(true)
|
||||
@ -290,18 +348,20 @@ proc start*(ctx: PMApiContext): void =
|
||||
salt: pwdAndSalt.salt,
|
||||
isAdmin: false)
|
||||
|
||||
resp($(%ctx.db.createUser(newUser)), JSON)
|
||||
jsonResp($(%ctx.db.createUser(newUser)))
|
||||
|
||||
except JsonParsingError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "Could not create new user:\n\t" & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
options "/users/@userId": optionsResp(@[HttpGet, HttpDelete])
|
||||
|
||||
get "/users/@userId":
|
||||
checkAuth(true)
|
||||
|
||||
resp(Http200, $(%ctx.db.getUser(parseUUID(@"userId"))))
|
||||
jsonResp($(%ctx.db.getUser(parseUUID(@"userId"))))
|
||||
|
||||
delete "/users/@userId":
|
||||
checkAuth(true)
|
||||
@ -310,18 +370,20 @@ proc start*(ctx: PMApiContext): void =
|
||||
try:
|
||||
let userId = parseUUID(@"userId")
|
||||
user = ctx.db.getUser(userId)
|
||||
except: jsonResp(Http404)
|
||||
except: statusResp(Http404)
|
||||
|
||||
try:
|
||||
if not ctx.db.deleteUser(user): raiseEx "unable to delete user"
|
||||
jsonResp(Http200, "user " & user.email & " deleted")
|
||||
statusResp(Http200, "user " & user.email & " deleted")
|
||||
|
||||
except: jsonResp(Http500, getCurrentExceptionMsg())
|
||||
except: statusResp(Http500, getCurrentExceptionMsg())
|
||||
|
||||
options "/api-tokens": optionsResp(@[HttpGet, HttpPost])
|
||||
|
||||
get "/api-tokens":
|
||||
checkAuth()
|
||||
|
||||
resp(Http200, $(%ctx.db.findApiTokensByUserId($session.user.id)))
|
||||
jsonResp($(%ctx.db.findApiTokensByUserId($session.user.id)))
|
||||
|
||||
post "/api-tokens":
|
||||
checkAuth()
|
||||
@ -343,40 +405,46 @@ proc start*(ctx: PMApiContext): void =
|
||||
|
||||
let respToken = %newToken
|
||||
respToken["value"] = %tokenValue
|
||||
resp($respToken, JSON)
|
||||
jsonResp($respToken)
|
||||
|
||||
except JsonParsingError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except AuthError: jsonResp(Http401, getCurrentExceptionMsg())
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except AuthError: statusResp(Http401, getCurrentExceptionMsg())
|
||||
except:
|
||||
debug getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
options "/api-tokens/@tokenId": optionsResp(@[HttpGet, HttpDelete])
|
||||
|
||||
get "/api-tokens/@tokenId":
|
||||
checkAuth()
|
||||
|
||||
try:
|
||||
resp(Http200, $(%ctx.db.getApiToken(parseUUID(@"tokenId"))))
|
||||
except NotFoundError: jsonResp(Http404, getCurrentExceptionMsg())
|
||||
except: jsonResp(Http500)
|
||||
jsonResp($(%ctx.db.getApiToken(parseUUID(@"tokenId"))))
|
||||
except NotFoundError: statusResp(Http404, getCurrentExceptionMsg())
|
||||
except: statusResp(Http500)
|
||||
|
||||
delete "/api-tokens/@tokenId":
|
||||
checkAuth()
|
||||
|
||||
try:
|
||||
let token = ctx.db.getApiToken(parseUUID(@"tokenId"))
|
||||
if ctx.db.deleteApiToken(token): jsonResp(Http200)
|
||||
else: jsonResp(Http500)
|
||||
except NotFoundError: jsonResp(Http404, getCurrentExceptionMsg())
|
||||
except: jsonResp(Http500)
|
||||
if ctx.db.deleteApiToken(token): statusResp(Http200)
|
||||
else: statusResp(Http500)
|
||||
except NotFoundError: statusResp(Http404, getCurrentExceptionMsg())
|
||||
except: statusResp(Http500)
|
||||
|
||||
# Measure
|
||||
|
||||
options "/measures": optionsResp(@[HttpGet, HttpPost])
|
||||
|
||||
get "/measures":
|
||||
checkAuth()
|
||||
|
||||
try: resp($(%ctx.db.findMeasuresByUserId($session.user.id)), JSON)
|
||||
try: jsonResp($(%ctx.db.findMeasuresByUserId($session.user.id)))
|
||||
except:
|
||||
error "unable to retrieve measures for user:\n\t" & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
post "/measures":
|
||||
checkAuth()
|
||||
@ -406,47 +474,84 @@ proc start*(ctx: PMApiContext): void =
|
||||
description: jsonBody.getIfExists("description").getStr(""),
|
||||
config: config)
|
||||
|
||||
resp($(%ctx.db.createMeasure(newMeasure)), JSON)
|
||||
jsonResp($(%ctx.db.createMeasure(newMeasure)))
|
||||
|
||||
except JsonParsingError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "unable to create new measure:\n\t" & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
options "/measures/@slug": optionsResp(@[HttpGet, HttpPost, HttpDelete])
|
||||
|
||||
get "/measures/@slug":
|
||||
checkAuth()
|
||||
|
||||
try: resp($(%ctx.getMeasureForSlug(session.user.id, @"slug")), JSON)
|
||||
except NotFoundError: jsonResp(Http404, getCurrentExceptionMsg())
|
||||
try: jsonResp($(%ctx.getMeasureForSlug(session.user.id, @"slug")))
|
||||
except NotFoundError: statusResp(Http404, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "unable to look up a measure by id:\n\t" & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
post "/measures/@slug":
|
||||
checkAuth()
|
||||
|
||||
try:
|
||||
let jsonBody = parseJson(request.body)
|
||||
var existingMeasure = ctx.getMeasureForSlug(session.user.id, @"slug")
|
||||
|
||||
if not (jsonBody.hasKey("slug") or jsonBody.hasKey("name")):
|
||||
raiseEx BadRequestError, "body must contain either the 'slug' field (short name), or the 'name' field, or both"
|
||||
|
||||
existingMeasure.slug =
|
||||
if jsonBody.hasKey("slug"): jsonBody["slug"].getStr.nameToSlug
|
||||
else: jsonBody["name"].getStr.nameToSlug
|
||||
|
||||
existingMeasure.name =
|
||||
if jsonBody.hasKey("name"): jsonBody["name"].getStr
|
||||
else: jsonBody["slug"].getStr.capitalize
|
||||
|
||||
|
||||
if jsonBody.hasKey("config"): existingMeasure.config = jsonBody["config"]
|
||||
|
||||
if jsonBody.hasKey("description"): existingMeasure.description = jsonBody["description"].getStr
|
||||
|
||||
jsonResp($(%ctx.db.updateMeasure(existingMeasure)))
|
||||
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "unable to update measure:\n\t" & getCurrentExceptionMsg()
|
||||
statusResp(Http500)
|
||||
|
||||
delete "/measures/@slug":
|
||||
checkAuth()
|
||||
|
||||
try:
|
||||
let measure = ctx.getMeasureForSlug(session.user.id, @"slug")
|
||||
if ctx.db.deleteMeasure(measure): jsonResp(Http200)
|
||||
if ctx.db.deleteMeasure(measure): statusResp(Http200)
|
||||
else: raiseEx ""
|
||||
except NotFoundError: jsonResp(Http404, getCurrentExceptionMsg())
|
||||
except NotFoundError: statusResp(Http404, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "unable to delete a measure:\n\t" & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
get "/measure/@slug":
|
||||
# Measurements
|
||||
|
||||
options "/measurements/@slug": optionsResp(@[HttpGet, HttpPost])
|
||||
|
||||
get "/measurements/@slug":
|
||||
checkAuth()
|
||||
|
||||
try:
|
||||
let measure = ctx.getMeasureForSlug(session.user.id, @"slug")
|
||||
resp($(%ctx.db.findMeasurementsByMeasureId($measure.id)), JSON)
|
||||
except NotFoundError: jsonResp(Http404, getCurrentExceptionMsg())
|
||||
jsonResp($(%ctx.db.findMeasurementsByMeasureId($measure.id)))
|
||||
except NotFoundError: statusResp(Http404, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "unable to list measurements:\n\t" & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
post "/measure/@slug":
|
||||
post "/measurements/@slug":
|
||||
checkAuth()
|
||||
|
||||
try:
|
||||
@ -455,7 +560,7 @@ proc start*(ctx: PMApiContext): void =
|
||||
|
||||
let newMeasurement = Measurement(
|
||||
measureId: measure.id,
|
||||
value: jsonBody.getOrFail("value").getInt,
|
||||
value: jsonBody.getOrFail("value").getFloat,
|
||||
timestamp:
|
||||
if jsonBody.hasKey("timestamp"): jsonBody["timestamp"].getStr.parseIso8601.utc
|
||||
else: getTime().utc,
|
||||
@ -463,66 +568,70 @@ proc start*(ctx: PMApiContext): void =
|
||||
if jsonBody.hasKey("extData"): jsonBody["extData"]
|
||||
else: newJObject())
|
||||
|
||||
resp($(%ctx.db.createMeasurement(newMeasurement)), JSON)
|
||||
jsonResp($(%ctx.db.createMeasurement(newMeasurement)))
|
||||
|
||||
except JsonParsingError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except NotFoundError: jsonResp(Http404, getCurrentExceptionMsg())
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except NotFoundError: statusResp(Http404, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "unable to add measurement:\n\t" & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
get "/measure/@slug/@id":
|
||||
options "/measurements/@slug/@id": optionsResp(@[HttpGet, HttpPut, HttpDelete])
|
||||
|
||||
get "/measurements/@slug/@id":
|
||||
checkAuth()
|
||||
|
||||
try:
|
||||
let measure = ctx.getMeasureForSlug(session.user.id, @"slug")
|
||||
resp($(%ctx.getMeasurementForMeasure(measure.id, parseUUID(@"id"))), JSON)
|
||||
jsonResp($(%ctx.getMeasurementForMeasure(measure.id, parseUUID(@"id"))))
|
||||
|
||||
except ValueError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except JsonParsingError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except NotFoundError: jsonResp(Http404, getCurrentExceptionMsg())
|
||||
except ValueError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except NotFoundError: statusResp(Http404, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "unable to retrieve measurement:\n\t" & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
put "/measure/@slug/@id":
|
||||
put "/measurements/@slug/@id":
|
||||
checkAuth()
|
||||
|
||||
try:
|
||||
let measure = ctx.getMeasureForSlug(session.user.id, @"slug")
|
||||
var measurement = ctx.getMeasurementForMeasure(measure.id, parseUUID(@"id"))
|
||||
let jsonBody = parseJson(request.body)
|
||||
if jsonBody.hasKey("value"): measurement.value = jsonBody["value"].getInt
|
||||
if jsonBody.hasKey("value"): measurement.value = jsonBody["value"].getFloat
|
||||
if jsonBody.hasKey("timestamp"): measurement.timestamp = jsonBody["timestamp"].getStr.parseIso8601
|
||||
if jsonBody.hasKey("extData"): measurement.extData = jsonBody["extData"]
|
||||
resp($(%ctx.db.updateMeasurement(measurement)), JSON)
|
||||
jsonResp($(%ctx.db.updateMeasurement(measurement)))
|
||||
|
||||
except ValueError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except JsonParsingError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except NotFoundError: jsonResp(Http404, getCurrentExceptionMsg())
|
||||
except ValueError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except NotFoundError: statusResp(Http404, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "unable to retrieve measurement:\n\t" & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
delete "/measure/@slug/@id":
|
||||
delete "/measurements/@slug/@id":
|
||||
checkAuth()
|
||||
|
||||
try:
|
||||
let measure = ctx.getMeasureForSlug(session.user.id, @"slug")
|
||||
let measurement = ctx.getMeasurementForMeasure(measure.id, parseUUID(@"id"))
|
||||
if ctx.db.deleteMeasurement(measurement): jsonResp(Http200)
|
||||
if ctx.db.deleteMeasurement(measurement): statusResp(Http200)
|
||||
else: raiseEx ""
|
||||
|
||||
except ValueError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except JsonParsingError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except NotFoundError: jsonResp(Http404, getCurrentExceptionMsg())
|
||||
except ValueError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except JsonParsingError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except NotFoundError: statusResp(Http404, getCurrentExceptionMsg())
|
||||
except:
|
||||
error "unable to delete measurement:\n\t" & getCurrentExceptionMsg()
|
||||
jsonResp(Http500)
|
||||
statusResp(Http500)
|
||||
|
||||
options "/log": optionsResp(@[HttpPost])
|
||||
|
||||
post "/log":
|
||||
checkAuth()
|
||||
@ -537,9 +646,11 @@ proc start*(ctx: PMApiContext): void =
|
||||
stacktrace: jsonBody.getIfExists("stacktrace").getStr(""),
|
||||
timestamp: jsonBody.getOrFail("timestamp").getStr.parseIso8601
|
||||
)
|
||||
resp(Http200, $(%ctx.db.createClientLogEntry(logEntry)), JSON)
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except: jsonResp(Http500, getCurrentExceptionMsg())
|
||||
jsonResp($(%ctx.db.createClientLogEntry(logEntry)))
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except: statusResp(Http500, getCurrentExceptionMsg())
|
||||
|
||||
options "/log/batch": optionsResp(@[HttpPost])
|
||||
|
||||
post "/log/batch":
|
||||
checkAuth()
|
||||
@ -555,15 +666,15 @@ proc start*(ctx: PMApiContext): void =
|
||||
stacktrace: it.getIfExists("stacktrace").getStr(""),
|
||||
timestamp: it.getOrFail("timestamp").getStr.parseIso8601
|
||||
))
|
||||
resp(Http200, $(%respMsgs), JSON)
|
||||
except BadRequestError: jsonResp(Http400, getCurrentExceptionMsg())
|
||||
except: jsonResp(Http500, getCurrentExceptionMsg())
|
||||
jsonResp($(%respMsgs))
|
||||
except BadRequestError: statusResp(Http400, getCurrentExceptionMsg())
|
||||
except: statusResp(Http500, getCurrentExceptionMsg())
|
||||
|
||||
post "/service/debug/stop":
|
||||
if not ctx.cfg.debug: jsonResp(Http404)
|
||||
if not ctx.cfg.debug: statusResp(Http404)
|
||||
else:
|
||||
let shutdownFut = sleepAsync(100)
|
||||
shutdownFut.callback = proc(): void = complete(stopFuture)
|
||||
resp($(%"shutting down"), JSON)
|
||||
jsonResp($(%"shutting down"))
|
||||
|
||||
waitFor(stopFuture)
|
||||
|
@ -9,6 +9,7 @@ type
|
||||
debug*: bool
|
||||
port*: int
|
||||
pwdCost*: int8
|
||||
knownOrigins*: seq[string]
|
||||
|
||||
PMApiContext* = object
|
||||
cfg*: PMApiConfig
|
||||
@ -23,7 +24,8 @@ proc `%`*(cfg: PMApiConfig): JsonNode =
|
||||
"dbConnString": cfg.dbConnString,
|
||||
"debug": cfg.debug,
|
||||
"port": cfg.port,
|
||||
"pwdCost": cfg.pwdCost }
|
||||
"pwdCost": cfg.pwdCost,
|
||||
"knownOrigins": cfg.knownOrigins }
|
||||
|
||||
template raiseEx*(errorType: type, reason: string): void =
|
||||
raise newException(errorType, reason)
|
||||
|
@ -1,31 +1,35 @@
|
||||
import db_postgres, macros, options, postgres, sequtils, strutils,
|
||||
times, timeutils, unicode, uuids
|
||||
import db_postgres, fiber_orm, sequtils, uuids
|
||||
|
||||
import ./models
|
||||
import ./db_common
|
||||
|
||||
export db_common.NotFoundError
|
||||
export fiber_orm.NotFoundError
|
||||
|
||||
type
|
||||
PMApiDb* = ref object
|
||||
conn: DbConn
|
||||
|
||||
|
||||
|
||||
proc connect*(connString: string): PMApiDb =
|
||||
result = PMApiDb(conn: open("", "", "", connString))
|
||||
|
||||
generateProcsForModels([User, ApiToken, Measure, Measurement, ClientLogEntry])
|
||||
generateProcsForModels(PMApiDb, [
|
||||
User,
|
||||
ApiToken,
|
||||
Measure,
|
||||
Measurement,
|
||||
ClientLogEntry
|
||||
])
|
||||
|
||||
generateLookup(User, @["email"])
|
||||
generateLookup(PMApiDb, User, @["email"])
|
||||
|
||||
generateLookup(ApiToken, @["userId"])
|
||||
generateLookup(ApiToken, @["hashedToken"])
|
||||
generateLookup(PMApiDb, ApiToken, @["userId"])
|
||||
generateLookup(PMApiDb, ApiToken, @["hashedToken"])
|
||||
|
||||
generateLookup(Measure, @["userId"])
|
||||
generateLookup(Measure, @["userId", "id"])
|
||||
generateLookup(Measure, @["userId", "slug"])
|
||||
generateLookup(PMApiDb, Measure, @["userId"])
|
||||
generateLookup(PMApiDb, Measure, @["userId", "id"])
|
||||
generateLookup(PMApiDb, Measure, @["userId", "slug"])
|
||||
|
||||
generateLookup(Measurement, @["measureId"])
|
||||
generateLookup(Measurement, @["measureId", "id"])
|
||||
generateLookup(PMApiDb, Measurement, @["measureId"])
|
||||
generateLookup(PMApiDb, Measurement, @["measureId", "id"])
|
||||
|
||||
generateLookup(ClientLogEntry, @["userId"])
|
||||
generateLookup(PMApiDb, ClientLogEntry, @["userId"])
|
||||
|
@ -1,150 +0,0 @@
|
||||
import db_postgres, macros, options, sequtils, strutils, uuids
|
||||
|
||||
from unicode import capitalize
|
||||
|
||||
import ./db_util
|
||||
|
||||
type NotFoundError* = object of CatchableError
|
||||
|
||||
proc newMutateClauses(): MutateClauses =
|
||||
return MutateClauses(
|
||||
columns: @[],
|
||||
placeholders: @[],
|
||||
values: @[])
|
||||
|
||||
proc createRecord*[T](db: DbConn, rec: T): T =
|
||||
var mc = newMutateClauses()
|
||||
populateMutateClauses(rec, true, mc)
|
||||
|
||||
# Confusingly, getRow allows inserts and updates. We use it to get back the ID
|
||||
# we want from the row.
|
||||
let newRow = db.getRow(sql(
|
||||
"INSERT INTO " & tableName(rec) &
|
||||
" (" & mc.columns.join(",") & ") " &
|
||||
" VALUES (" & mc.placeholders.join(",") & ") " &
|
||||
" RETURNING *"), mc.values)
|
||||
|
||||
result = rowToModel(T, newRow)
|
||||
|
||||
proc updateRecord*[T](db: DbConn, rec: T): bool =
|
||||
var mc = newMutateClauses()
|
||||
populateMutateClauses(rec, false, mc)
|
||||
|
||||
let setClause = zip(mc.columns, mc.placeholders).mapIt(it.a & " = " & it.b).join(",")
|
||||
let numRowsUpdated = db.execAffectedRows(sql(
|
||||
"UPDATE " & tableName(rec) &
|
||||
" SET " & setClause &
|
||||
" WHERE id = ? "), mc.values.concat(@[$rec.id]))
|
||||
|
||||
return numRowsUpdated > 0;
|
||||
|
||||
template deleteRecord*(db: DbConn, modelType: type, id: typed): untyped =
|
||||
db.tryExec(sql("DELETE FROM " & tableName(modelType) & " WHERE id = ?"), $id)
|
||||
|
||||
proc deleteRecord*[T](db: DbConn, rec: T): bool =
|
||||
return db.tryExec(sql("DELETE FROM " & tableName(rec) & " WHERE id = ?"), $rec.id)
|
||||
|
||||
template getRecord*(db: DbConn, modelType: type, id: typed): untyped =
|
||||
let row = db.getRow(sql(
|
||||
"SELECT " & columnNamesForModel(modelType).join(",") &
|
||||
" FROM " & tableName(modelType) &
|
||||
" WHERE id = ?"), @[$id])
|
||||
|
||||
if row.allIt(it.len == 0):
|
||||
raise newException(NotFoundError, "no record for id " & $id)
|
||||
|
||||
rowToModel(modelType, row)
|
||||
|
||||
template findRecordsWhere*(db: DbConn, modelType: type, whereClause: string, values: varargs[string, dbFormat]): untyped =
|
||||
db.getAllRows(sql(
|
||||
"SELECT " & columnNamesForModel(modelType).join(",") &
|
||||
" FROM " & tableName(modelType) &
|
||||
" WHERE " & whereClause), values)
|
||||
.mapIt(rowToModel(modelType, it))
|
||||
|
||||
template getAllRecords*(db: DbConn, modelType: type): untyped =
|
||||
db.getAllRows(sql(
|
||||
"SELECT " & columnNamesForModel(modelType).join(",") &
|
||||
" FROM " & tableName(modelType)))
|
||||
.mapIt(rowToModel(modelType, it))
|
||||
|
||||
template findRecordsBy*(db: DbConn, modelType: type, lookups: seq[tuple[field: string, value: string]]): untyped =
|
||||
db.getAllRows(sql(
|
||||
"SELECT " & columnNamesForModel(modelType).join(",") &
|
||||
" FROM " & tableName(modelType) &
|
||||
" WHERE " & lookups.mapIt(it.field & " = ?").join(" AND ")),
|
||||
lookups.mapIt(it.value))
|
||||
.mapIt(rowToModel(modelType, it))
|
||||
|
||||
macro generateProcsForModels*(modelTypes: openarray[type]): untyped =
|
||||
result = newStmtList()
|
||||
|
||||
for t in modelTypes:
|
||||
let modelName = $(t.getType[1])
|
||||
let getName = ident("get" & modelName)
|
||||
let getAllName = ident("getAll" & modelName & "s")
|
||||
let findWhereName = ident("find" & modelName & "sWhere")
|
||||
let createName = ident("create" & modelName)
|
||||
let updateName = ident("update" & modelName)
|
||||
let deleteName = ident("delete" & modelName)
|
||||
let idType = typeOfColumn(t, "id")
|
||||
result.add quote do:
|
||||
proc `getName`*(db: PMApiDb, id: `idType`): `t` = getRecord(db.conn, `t`, id)
|
||||
proc `getAllName`*(db: PMApiDb): seq[`t`] = getAllRecords(db.conn, `t`)
|
||||
proc `findWhereName`*(db: PMApiDb, whereClause: string, values: varargs[string, dbFormat]): seq[`t`] =
|
||||
return findRecordsWhere(db.conn, `t`, whereClause, values)
|
||||
proc `createName`*(db: PMApiDb, rec: `t`): `t` = createRecord(db.conn, rec)
|
||||
proc `updateName`*(db: PMApiDb, rec: `t`): bool = updateRecord(db.conn, rec)
|
||||
proc `deleteName`*(db: PMApiDb, rec: `t`): bool = deleteRecord(db.conn, rec)
|
||||
proc `deleteName`*(db: PMApiDb, id: `idType`): bool = deleteRecord(db.conn, `t`, id)
|
||||
|
||||
macro generateLookup*(modelType: type, fields: seq[string]): untyped =
|
||||
let fieldNames = fields[1].mapIt($it)
|
||||
let procName = ident("find" & $modelType.getType[1] & "sBy" & fieldNames.mapIt(it.capitalize).join("And"))
|
||||
|
||||
# Create proc skeleton
|
||||
result = quote do:
|
||||
proc `procName`*(db: PMApiDb): seq[`modelType`] =
|
||||
return findRecordsBy(db.conn, `modelType`)
|
||||
|
||||
var callParams = quote do: @[]
|
||||
|
||||
# Add dynamic parameters for the proc definition and inner proc call
|
||||
for n in fieldNames:
|
||||
let paramTuple = newNimNode(nnkPar)
|
||||
paramTuple.add(newColonExpr(ident("field"), newLit(identNameToDb(n))))
|
||||
paramTuple.add(newColonExpr(ident("value"), ident(n)))
|
||||
|
||||
result[3].add(newIdentDefs(ident(n), ident("string")))
|
||||
callParams[1].add(paramTuple)
|
||||
|
||||
result[6][0][0].add(callParams)
|
||||
|
||||
macro generateProcsForFieldLookups*(modelsAndFields: openarray[tuple[t: type, fields: seq[string]]]): untyped =
|
||||
result = newStmtList()
|
||||
|
||||
for i in modelsAndFields:
|
||||
var modelType = i[1][0]
|
||||
let fieldNames = i[1][1][1].mapIt($it)
|
||||
|
||||
let procName = ident("find" & $modelType & "sBy" & fieldNames.mapIt(it.capitalize).join("And"))
|
||||
|
||||
# Create proc skeleton
|
||||
let procDefAST = quote do:
|
||||
proc `procName`*(db: PMApiDb): seq[`modelType`] =
|
||||
return findRecordsBy(db.conn, `modelType`)
|
||||
|
||||
var callParams = quote do: @[]
|
||||
|
||||
# Add dynamic parameters for the proc definition and inner proc call
|
||||
for n in fieldNames:
|
||||
let paramTuple = newNimNode(nnkPar)
|
||||
paramTuple.add(newColonExpr(ident("field"), newLit(n)))
|
||||
paramTuple.add(newColonExpr(ident("value"), ident(n)))
|
||||
|
||||
procDefAST[3].add(newIdentDefs(ident(n), ident("string")))
|
||||
callParams[1].add(paramTuple)
|
||||
|
||||
procDefAST[6][0][0].add(callParams)
|
||||
|
||||
result.add procDefAST
|
@ -1,285 +0,0 @@
|
||||
import json, macros, options, sequtils, strutils, times, timeutils, unicode,
|
||||
uuids
|
||||
|
||||
const UNDERSCORE_RUNE = "_".toRunes[0]
|
||||
const PG_TIMESTAMP_FORMATS = [
|
||||
"yyyy-MM-dd HH:mm:sszz",
|
||||
"yyyy-MM-dd HH:mm:ss'.'fffzz"
|
||||
]
|
||||
|
||||
type
|
||||
MutateClauses* = object
|
||||
columns*: seq[string]
|
||||
placeholders*: seq[string]
|
||||
values*: seq[string]
|
||||
|
||||
# TODO: more complete implementation
|
||||
# see https://github.com/blakeembrey/pluralize
|
||||
proc pluralize(name: string): string =
|
||||
if name[^2..^1] == "ey": return name[0..^3] & "ies"
|
||||
if name[^1] == 'y': return name[0..^2] & "ies"
|
||||
return name & "s"
|
||||
|
||||
macro modelName*(model: object): string =
|
||||
return $model.getTypeInst
|
||||
|
||||
macro modelName*(modelType: type): string =
|
||||
return $modelType.getType[1]
|
||||
|
||||
proc identNameToDb*(name: string): string =
|
||||
let nameInRunes = name.toRunes
|
||||
var prev: Rune
|
||||
var resultRunes = newSeq[Rune]()
|
||||
|
||||
for cur in nameInRunes:
|
||||
if resultRunes.len == 0:
|
||||
resultRunes.add(toLower(cur))
|
||||
elif isLower(prev) and isUpper(cur):
|
||||
resultRunes.add(UNDERSCORE_RUNE)
|
||||
resultRunes.add(toLower(cur))
|
||||
else: resultRunes.add(toLower(cur))
|
||||
|
||||
prev = cur
|
||||
|
||||
return $resultRunes
|
||||
|
||||
proc dbNameToIdent*(name: string): string =
|
||||
let parts = name.split("_")
|
||||
return @[parts[0]].concat(parts[1..^1].mapIt(capitalize(it))).join("")
|
||||
|
||||
proc tableName*(modelType: type): string =
|
||||
return pluralize(modelName(modelType).identNameToDb)
|
||||
|
||||
proc tableName*[T](rec: T): string =
|
||||
return pluralize(modelName(rec).identNameToDb)
|
||||
|
||||
proc dbFormat*(s: string): string = return s
|
||||
|
||||
proc dbFormat*(dt: DateTime): string = return dt.formatIso8601
|
||||
|
||||
proc dbFormat*[T](list: seq[T]): string =
|
||||
return "{" & list.mapIt(dbFormat(it)).join(",") & "}"
|
||||
|
||||
proc dbFormat*[T](item: T): string = return $item
|
||||
|
||||
type DbArrayParseState = enum
|
||||
expectStart, inQuote, inVal, expectEnd
|
||||
|
||||
proc parsePGDatetime*(val: string): DateTime =
|
||||
var errStr = ""
|
||||
for df in PG_TIMESTAMP_FORMATS:
|
||||
try: return val.parse(df)
|
||||
except: errStr &= "\n" & getCurrentExceptionMsg()
|
||||
raise newException(ValueError, "Cannot parse PG date. Tried:" & errStr)
|
||||
|
||||
proc parseDbArray*(val: string): seq[string] =
|
||||
result = newSeq[string]()
|
||||
|
||||
var parseState = DbArrayParseState.expectStart
|
||||
var curStr = ""
|
||||
var idx = 1
|
||||
var sawEscape = false
|
||||
|
||||
while idx < val.len - 1:
|
||||
var curChar = val[idx]
|
||||
idx += 1
|
||||
|
||||
case parseState:
|
||||
|
||||
of expectStart:
|
||||
if curChar == ' ': continue
|
||||
elif curChar == '"':
|
||||
parseState = inQuote
|
||||
continue
|
||||
else:
|
||||
parseState = inVal
|
||||
|
||||
of expectEnd:
|
||||
if curChar == ' ': continue
|
||||
elif curChar == ',':
|
||||
result.add(curStr)
|
||||
curStr = ""
|
||||
parseState = expectStart
|
||||
continue
|
||||
|
||||
of inQuote:
|
||||
if curChar == '"' and not sawEscape:
|
||||
parseState = expectEnd
|
||||
continue
|
||||
|
||||
of inVal:
|
||||
if curChar == '"' and not sawEscape:
|
||||
raise newException(ValueError, "Invalid DB array value (cannot have '\"' in the middle of an unquoted string).")
|
||||
elif curChar == ',':
|
||||
result.add(curStr)
|
||||
curStr = ""
|
||||
parseState = expectStart
|
||||
continue
|
||||
|
||||
# if we saw an escaped \", add just the ", otherwise add both
|
||||
if sawEscape:
|
||||
if curChar != '"': curStr.add('\\')
|
||||
curStr.add(curChar)
|
||||
sawEscape = false
|
||||
|
||||
elif curChar == '\\':
|
||||
sawEscape = true
|
||||
|
||||
else: curStr.add(curChar)
|
||||
|
||||
if not (parseState == inQuote) and curStr.len > 0:
|
||||
result.add(curStr)
|
||||
|
||||
proc createParseStmt*(t, value: NimNode): NimNode =
|
||||
|
||||
#echo "Creating parse statment for ", t.treeRepr
|
||||
if t.typeKind == ntyObject:
|
||||
|
||||
if t.getType == UUID.getType:
|
||||
result = quote do: parseUUID(`value`)
|
||||
|
||||
elif t.getType == DateTime.getType:
|
||||
result = quote do: parsePGDatetime(`value`)
|
||||
|
||||
elif t.getTypeInst == Option.getType:
|
||||
let innerType = t.getTypeImpl[2][0][0][1]
|
||||
let parseStmt = createParseStmt(innerType, value)
|
||||
result = quote do:
|
||||
if `value`.len == 0: none[`innerType`]()
|
||||
else: some(`parseStmt`)
|
||||
|
||||
else: error "Unknown value object type: " & $t.getTypeInst
|
||||
|
||||
elif t.typeKind == ntyRef:
|
||||
|
||||
if $t.getTypeInst == "JsonNode":
|
||||
result = quote do: parseJson(`value`)
|
||||
|
||||
else:
|
||||
error "Unknown ref type: " & $t.getTypeInst
|
||||
|
||||
elif t.typeKind == ntySequence:
|
||||
let innerType = t[1]
|
||||
|
||||
let parseStmts = createParseStmt(innerType, ident("it"))
|
||||
|
||||
result = quote do: parseDbArray(`value`).mapIt(`parseStmts`)
|
||||
|
||||
elif t.typeKind == ntyString:
|
||||
result = quote do: `value`
|
||||
|
||||
elif t.typeKind == ntyInt:
|
||||
result = quote do: parseInt(`value`)
|
||||
|
||||
elif t.typeKind == ntyBool:
|
||||
result = quote do: "true".startsWith(`value`.toLower)
|
||||
|
||||
else:
|
||||
error "Unknown value type: " & $t.typeKind
|
||||
|
||||
template walkFieldDefs*(t: NimNode, body: untyped) =
|
||||
let tTypeImpl = t.getTypeImpl
|
||||
|
||||
var nodeToItr: NimNode
|
||||
if tTypeImpl.typeKind == ntyObject: nodeToItr = tTypeImpl[2]
|
||||
elif tTypeImpl.typeKind == ntyTypeDesc: nodeToItr = tTypeImpl.getType[1].getType[2]
|
||||
else: error $t & " is not an object or type desc (it's a " & $tTypeImpl.typeKind & ")."
|
||||
|
||||
for fieldDef {.inject.} in nodeToItr.children:
|
||||
# ignore AST nodes that are not field definitions
|
||||
if fieldDef.kind == nnkIdentDefs:
|
||||
let fieldIdent {.inject.} = fieldDef[0]
|
||||
let fieldType {.inject.} = fieldDef[1]
|
||||
body
|
||||
|
||||
elif fieldDef.kind == nnkSym:
|
||||
let fieldIdent {.inject.} = fieldDef
|
||||
let fieldType {.inject.} = fieldDef.getType
|
||||
body
|
||||
|
||||
macro columnNamesForModel*(modelType: typed): seq[string] =
|
||||
var columnNames = newSeq[string]()
|
||||
|
||||
modelType.walkFieldDefs:
|
||||
columnNames.add(identNameToDb($fieldIdent))
|
||||
|
||||
result = newLit(columnNames)
|
||||
|
||||
macro rowToModel*(modelType: typed, row: seq[string]): untyped =
|
||||
|
||||
# Create the object constructor AST node
|
||||
result = newNimNode(nnkObjConstr).add(modelType)
|
||||
|
||||
# Create new colon expressions for each of the property initializations
|
||||
var idx = 0
|
||||
modelType.walkFieldDefs:
|
||||
let itemLookup = quote do: `row`[`idx`]
|
||||
result.add(newColonExpr(
|
||||
fieldIdent,
|
||||
createParseStmt(fieldType, itemLookup)))
|
||||
idx += 1
|
||||
|
||||
macro listFields*(t: typed): untyped =
|
||||
var fields: seq[tuple[n: string, t: string]] = @[]
|
||||
t.walkFieldDefs:
|
||||
if fieldDef.kind == nnkSym: fields.add((n: $fieldIdent, t: fieldType.repr))
|
||||
else: fields.add((n: $fieldIdent, t: $fieldType))
|
||||
|
||||
result = newLit(fields)
|
||||
|
||||
proc typeOfColumn*(modelType: NimNode, colName: string): NimNode =
|
||||
modelType.walkFieldDefs:
|
||||
if $fieldIdent != colName: continue
|
||||
|
||||
if fieldType.typeKind == ntyObject:
|
||||
|
||||
if fieldType.getType == UUID.getType: return ident("UUID")
|
||||
elif fieldType.getType == DateTime.getType: return ident("DateTime")
|
||||
elif fieldType.getType == Option.getType: return ident("Option")
|
||||
else: error "Unknown column type: " & $fieldType.getTypeInst
|
||||
|
||||
else: return fieldType
|
||||
|
||||
raise newException(Exception,
|
||||
"model of type '" & $modelType & "' has no column named '" & colName & "'")
|
||||
|
||||
proc isZero(val: int): bool = return val == 0
|
||||
|
||||
macro populateMutateClauses*(t: typed, newRecord: bool, mc: var MutateClauses): untyped =
|
||||
|
||||
result = newStmtList()
|
||||
|
||||
# iterate over all the object's fields
|
||||
t.walkFieldDefs:
|
||||
|
||||
# grab the field, it's string name, and it's type
|
||||
let fieldName = $fieldIdent
|
||||
|
||||
# we do not update the ID, but we do check: if we're creating a new
|
||||
# record, we should not have an existing ID
|
||||
if fieldName == "id":
|
||||
result.add quote do:
|
||||
if `newRecord` and not `t`.id.isZero:
|
||||
raise newException(
|
||||
AssertionError,
|
||||
"Trying to create a new record, but the record already has an ID (" & $(`t`.id) & ").")
|
||||
|
||||
# if we're looking at an optional field, add logic to check for presence
|
||||
elif fieldType.kind == nnkBracketExpr and
|
||||
fieldType.len > 0 and
|
||||
fieldType[0] == Option.getType:
|
||||
|
||||
result.add quote do:
|
||||
`mc`.columns.add(identNameToDb(`fieldName`))
|
||||
if `t`.`fieldIdent`.isSome:
|
||||
`mc`.placeholders.add("?")
|
||||
`mc`.values.add(dbFormat(`t`.`fieldIdent`.get))
|
||||
else:
|
||||
`mc`.placeholders.add("NULL")
|
||||
|
||||
# otherwise assume we can convert and go ahead.
|
||||
else:
|
||||
result.add quote do:
|
||||
`mc`.columns.add(identNameToDb(`fieldName`))
|
||||
`mc`.placeholders.add("?")
|
||||
`mc`.values.add(dbFormat(`t`.`fieldIdent`))
|
@ -28,7 +28,7 @@ type
|
||||
Measurement* = object
|
||||
id*: UUID
|
||||
measureId*: UUID
|
||||
value*: int
|
||||
value*: float
|
||||
timestamp*: DateTime
|
||||
extData*: JsonNode
|
||||
|
||||
|
@ -1 +1 @@
|
||||
const PM_API_VERSION* = "0.2.0"
|
||||
const PM_API_VERSION* = "0.11.0"
|
||||
|
@ -0,0 +1,2 @@
|
||||
-- DOWN script for measure-value-is-numeric (20200216230431)
|
||||
alter table "measurements" alter column "value" type integer;
|
@ -0,0 +1,2 @@
|
||||
-- UP script for measure-value-is-numeric (20200216230431)
|
||||
alter table "measurements" alter column "value" type numeric;
|
@ -1,22 +1,37 @@
|
||||
#!/bin/bash
|
||||
|
||||
host="${PM_API_HOST:-localhost:8081}"
|
||||
api_base_url="${PM_API_BASE_URL:-http://localhost:8100/v0}"
|
||||
if [ $# -eq 1 ]; then
|
||||
url="$1"
|
||||
method="GET"
|
||||
data=""
|
||||
elif [ $# -eq 2 ]; then
|
||||
method="$1"
|
||||
url="$2"
|
||||
data=""
|
||||
else
|
||||
if [ $1 == "auth-token" ]; then
|
||||
curl -s -X POST \
|
||||
-H "Origin: https://curl.localhost" \
|
||||
"${api_base_url}/auth-token" \
|
||||
-d "$2" \
|
||||
| xargs printf "Bearer %s" \
|
||||
> credential
|
||||
|
||||
exit 0
|
||||
else
|
||||
method="$1"
|
||||
url="$2"
|
||||
data=""
|
||||
fi
|
||||
else
|
||||
method="$1"
|
||||
url="$2"
|
||||
data="$3"
|
||||
fi
|
||||
|
||||
if [[ ! $url = /* ]]; then url="/$url"; fi
|
||||
|
||||
curl -s -X "$method" \
|
||||
-H "Content-Type: application/json" \
|
||||
-H "Authorization: $(cat credential)"\
|
||||
"http://${host}/api/$url" \
|
||||
-d "$data"
|
||||
-H "Authorization: $(cat credential)" \
|
||||
-H "Origin: https://curl.localhost" \
|
||||
"${api_base_url}$url" \
|
||||
-d "$data" \
|
||||
| jq .
|
||||
|
@ -1,10 +0,0 @@
|
||||
<RoutingRules>
|
||||
<RoutingRule>
|
||||
<Condition>
|
||||
<KeyPrefixEquals>api</KeyPrefixEquals>
|
||||
</Condition>
|
||||
<Redirect>
|
||||
<HostName>https://pmapi.jdbernard.com</HostName>
|
||||
</Redirect>
|
||||
</RoutingRule>
|
||||
</RoutingRules>
|
@ -0,0 +1 @@
|
||||
### Add the ability to delete measures.
|
@ -0,0 +1,5 @@
|
||||
### Add support for text entries.
|
||||
|
||||
Thinking is to allow recording an arbitrary text value alonside a timestamp.
|
||||
Presentation would be something like a list of the values. Probably no graph
|
||||
(maybe something like a histogram for some use cases?).
|
9
doc/issues/new-issue.sh
Executable file
9
doc/issues/new-issue.sh
Executable file
@ -0,0 +1,9 @@
|
||||
id=$(cat next-issue-number.txt)
|
||||
printf "%03d" "$(expr $id + 1)" > next-issue-number.txt
|
||||
|
||||
printf "Title/Summary?\n> "
|
||||
read -r summary
|
||||
|
||||
slugSummary=$(echo "$summary" | tr "[:upper:]" "[:lower:]" | tr ' ' - )
|
||||
slugSummary="${slugSummary//.}"
|
||||
echo "### $summary" > "$id-$slugSummary.md"
|
1
doc/issues/next-issue-number.txt
Normal file
1
doc/issues/next-issue-number.txt
Normal file
@ -0,0 +1 @@
|
||||
010
|
@ -0,0 +1,8 @@
|
||||
### Provide options for graphing measures.
|
||||
|
||||
As a user I would like to be able to configure the graph used for a measure.
|
||||
|
||||
Needed:
|
||||
- General pattern for graph configuration.
|
||||
- Support for different graph types (line, bar, pie, area, others?).
|
||||
- Support for pre-processing of data (graph rolling average, etc).
|
@ -0,0 +1,10 @@
|
||||
### Add a timestamp meaure type (no value).
|
||||
|
||||
As a user I would like to be able to measure when things happen (fall asleep)
|
||||
with a simple timestamp.
|
||||
|
||||
#### Implementation notes:
|
||||
|
||||
This may not require a new storage type (just use the existing SimpleMeasure)
|
||||
but UI (input, graphs, etc.) would just ignore the value and only consider the
|
||||
timestamp.
|
@ -0,0 +1 @@
|
||||
### Add the ability to delete measurements.
|
@ -0,0 +1 @@
|
||||
### Add the ability to edit measurements.
|
1
doc/issues/open/006-add-the-ability-to-edit-measures.md
Normal file
1
doc/issues/open/006-add-the-ability-to-edit-measures.md
Normal file
@ -0,0 +1 @@
|
||||
### Add the ability to edit measures.
|
@ -0,0 +1 @@
|
||||
### Support rolling averages in graph displays.
|
3
doc/issues/open/008-toggle-measure-visibility.md
Normal file
3
doc/issues/open/008-toggle-measure-visibility.md
Normal file
@ -0,0 +1,3 @@
|
||||
### Toggle Measure Visibility
|
||||
|
||||
Allow the user to choose whether a measure should be visible or hidden by default.
|
3
doc/issues/open/009-grouped-measures.md
Normal file
3
doc/issues/open/009-grouped-measures.md
Normal file
@ -0,0 +1,3 @@
|
||||
### Grouped Measures
|
||||
|
||||
Create a measure type that is just a grouping of several other measures. For example, it would be nice to be able to group all workout-related measures into one group. The graph could show an overlay of all the different measures on one graph.
|
@ -46,9 +46,6 @@ user to manage these without a password.
|
||||
pmapi ALL=NOPASSWD: /bin/systemctl stop personal_measure_api.dev.service
|
||||
pmapi ALL=NOPASSWD: /bin/systemctl start personal_measure_api.dev.service
|
||||
|
||||
two systemd
|
||||
service definitions, one for
|
||||
|
||||
### Database
|
||||
|
||||
razgriz-db.jdb-labs.com RDS instance maintains databases for each environment:
|
||||
@ -60,17 +57,9 @@ razgriz-db.jdb-labs.com RDS instance maintains databases for each environment:
|
||||
CloudFront manages the routing of all of the external facing URLs.
|
||||
|
||||
https://pm.jdb-labs.com (CloudFront)
|
||||
├── /api/<path>
|
||||
│ └── https://pmapi.jdb-labs.com/api/
|
||||
│ ├── nginx:80 --> nim/jester:8280
|
||||
│ └── razgriz-db: database personal_measure
|
||||
└── s3://pm.jdb-labs.com/prod/webroot (static HTML)
|
||||
|
||||
https://pm-dev.jdb-labs.com (CloudFront)
|
||||
├── /api/<path>
|
||||
│ └── https://pmapi-dev.jdb-labs.com/api/
|
||||
│ ├── nginx:80 --> nim/jester:8281
|
||||
│ └── razgriz-db: database personal_measure_dev
|
||||
└── s3://pm.jdb-labs.com/dev/webroot (static HTML)
|
||||
|
||||
|
28
operations/invalidate-cdn-cache.sh
Executable file
28
operations/invalidate-cdn-cache.sh
Executable file
@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
echo "Looking up CloudFront distribution ID for Personal Measure ${TARGET_ENV} environment."
|
||||
cloudfront_distribution_id=$(\
|
||||
aws cloudfront list-distributions \
|
||||
--query "DistributionList.Items[?starts_with(Comment, 'Personal Measure ${TARGET_ENV}')].Id | [0]" \
|
||||
| sed -e 's/^"//' -e 's/"$//'
|
||||
)
|
||||
|
||||
if [[ -z "${cloudfront_distribution_id}" ]]; then
|
||||
>&2 echo "Unable to find CloudFront distribution for domain ${TARGET_ENV}."
|
||||
exit 3
|
||||
fi
|
||||
|
||||
echo "Found distribution ID ${cloudfront_distribution_id}."
|
||||
|
||||
echo "Invalidating the CloudFront cache for ${TARGET_ENV}."
|
||||
invalidation_id=$(aws cloudfront create-invalidation \
|
||||
--query 'Invalidation.Id' \
|
||||
--distribution-id "${cloudfront_distribution_id}" \
|
||||
--paths '/index.html')
|
||||
|
||||
if [[ $? -ne 0 || -z "${invalidation_id}" ]]; then
|
||||
>&2 echo "Unable to create the CloudFront invalidation."
|
||||
else
|
||||
echo "Successfully created invalidation ${invalidation_id}."
|
||||
fi
|
||||
|
||||
echo "Done."
|
11
operations/terraform/common.tf
Normal file
11
operations/terraform/common.tf
Normal file
@ -0,0 +1,11 @@
|
||||
### Variables
|
||||
|
||||
variable "aws_region" {
|
||||
description = "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html"
|
||||
default = "us-west-2" # Oregon
|
||||
}
|
||||
|
||||
variable "app_root_url" {
|
||||
description = "Name of the S3 bucket to store deployed artifacts, logs, etc."
|
||||
default = "pm.jdb-software.com"
|
||||
}
|
98
operations/terraform/deployed_env/cloudfront.tf
Normal file
98
operations/terraform/deployed_env/cloudfront.tf
Normal file
@ -0,0 +1,98 @@
|
||||
data "aws_iam_policy_document" "bucket_access_policy" {
|
||||
statement {
|
||||
actions = [ "s3:GetObject" ]
|
||||
effect = "Allow"
|
||||
resources = [ "${var.artifact_bucket.arn}/${var.environment}/webroot/*" ]
|
||||
|
||||
principals {
|
||||
type = "AWS"
|
||||
identifiers = [ aws_cloudfront_origin_access_identity.origin_access_identity.iam_arn ]
|
||||
}
|
||||
}
|
||||
|
||||
statement {
|
||||
actions = [ "s3:ListBucket" ]
|
||||
effect = "Allow"
|
||||
resources = [ var.artifact_bucket.arn ]
|
||||
|
||||
principals {
|
||||
type = "AWS"
|
||||
identifiers = [ aws_cloudfront_origin_access_identity.origin_access_identity.iam_arn ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
output "oai_access_policy" {
|
||||
value = data.aws_iam_policy_document.bucket_access_policy
|
||||
}
|
||||
|
||||
resource "aws_cloudfront_origin_access_identity" "origin_access_identity" {
|
||||
comment = "OAI for Personal Measure {$var.environment} environment."
|
||||
}
|
||||
|
||||
resource "aws_cloudfront_distribution" "s3_distribution" {
|
||||
origin {
|
||||
domain_name = var.artifact_bucket.bucket_regional_domain_name
|
||||
origin_id = "S3-PersonalMeasure-${var.environment}"
|
||||
origin_path = "/${var.environment}/webroot"
|
||||
|
||||
s3_origin_config {
|
||||
origin_access_identity = aws_cloudfront_origin_access_identity.origin_access_identity.cloudfront_access_identity_path
|
||||
}
|
||||
}
|
||||
|
||||
enabled = true
|
||||
is_ipv6_enabled = true
|
||||
comment = "Personal Measure ${var.environment} distribution."
|
||||
default_root_object = "/index.html"
|
||||
|
||||
logging_config {
|
||||
include_cookies = false
|
||||
bucket = var.artifact_bucket.bucket_domain_name
|
||||
prefix = "${var.environment}/logs/cloudfront"
|
||||
}
|
||||
|
||||
aliases = [local.app_domain_name]
|
||||
|
||||
default_cache_behavior {
|
||||
allowed_methods = ["GET", "HEAD", "OPTIONS"]
|
||||
cached_methods = ["GET", "HEAD", "OPTIONS"]
|
||||
target_origin_id = "S3-PersonalMeasure-${var.environment}"
|
||||
|
||||
forwarded_values {
|
||||
query_string = false
|
||||
|
||||
cookies {
|
||||
forward = "none"
|
||||
}
|
||||
}
|
||||
|
||||
min_ttl = 0
|
||||
default_ttl = 60 * 60 * 24 * 365 # cache for a year
|
||||
max_ttl = 60 * 60 * 24 * 365 # cache for a year
|
||||
compress = true
|
||||
viewer_protocol_policy = "redirect-to-https"
|
||||
}
|
||||
|
||||
custom_error_response {
|
||||
error_code = 404
|
||||
response_code = 200
|
||||
response_page_path = "/index.html"
|
||||
}
|
||||
|
||||
price_class = "PriceClass_100" # US and Canada only
|
||||
|
||||
restrictions {
|
||||
geo_restriction {
|
||||
restriction_type = "none"
|
||||
}
|
||||
}
|
||||
tags = {
|
||||
Environment = local.environment_name
|
||||
}
|
||||
|
||||
viewer_certificate {
|
||||
acm_certificate_arn = data.terraform_remote_state.jdbsoft.outputs.aws_acm_certificate_jdbsoft_us_east_1.arn
|
||||
ssl_support_method = "sni-only"
|
||||
}
|
||||
}
|
25
operations/terraform/deployed_env/domain.tf
Normal file
25
operations/terraform/deployed_env/domain.tf
Normal file
@ -0,0 +1,25 @@
|
||||
resource "aws_route53_record" "app_domain" {
|
||||
zone_id = data.terraform_remote_state.jdbsoft.outputs.aws_route53_zone_jdbsoft.zone_id
|
||||
name = local.app_domain_name
|
||||
type = "A"
|
||||
|
||||
alias {
|
||||
name = aws_cloudfront_distribution.s3_distribution.domain_name
|
||||
zone_id = aws_cloudfront_distribution.s3_distribution.hosted_zone_id
|
||||
evaluate_target_health = false
|
||||
}
|
||||
|
||||
depends_on = [aws_cloudfront_distribution.s3_distribution ]
|
||||
}
|
||||
|
||||
resource "aws_route53_record" "api_domain" {
|
||||
zone_id = data.terraform_remote_state.jdbsoft.outputs.aws_route53_zone_jdbsoft.zone_id
|
||||
name = local.api_domain_name
|
||||
type = "A"
|
||||
|
||||
alias {
|
||||
name = data.terraform_remote_state.jdbsoft.outputs.aws_lb_jdbsoft.dns_name
|
||||
zone_id = data.terraform_remote_state.jdbsoft.outputs.aws_lb_jdbsoft.zone_id
|
||||
evaluate_target_health = false
|
||||
}
|
||||
}
|
75
operations/terraform/deployed_env/ecs.tf
Normal file
75
operations/terraform/deployed_env/ecs.tf
Normal file
@ -0,0 +1,75 @@
|
||||
resource "aws_secretsmanager_secret" "pmapi" {
|
||||
name = "${local.environment_name}-Config"
|
||||
tags = { Environment = local.environment_name }
|
||||
}
|
||||
|
||||
resource "aws_ecs_task_definition" "pmapi" {
|
||||
family = local.environment_name
|
||||
network_mode = "bridge"
|
||||
requires_compatibilities = ["EC2"]
|
||||
execution_role_arn = aws_iam_role.ecs_task.arn
|
||||
|
||||
# See https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ContainerDefinition.html
|
||||
container_definitions = jsonencode([
|
||||
{
|
||||
name = local.environment_name
|
||||
image = "${var.ecr_repo.repository_url}:${data.external.git_describe.result.version}"
|
||||
cpu = 128
|
||||
memory = 128
|
||||
memoryReservation = 32
|
||||
environment = [
|
||||
{
|
||||
name = "PORT"
|
||||
value = "80"
|
||||
}
|
||||
]
|
||||
portMappings = [
|
||||
{
|
||||
protocol = "tcp"
|
||||
containerPort = 80
|
||||
}
|
||||
]
|
||||
secrets = [
|
||||
{
|
||||
name = "AUTH_SECRET"
|
||||
description = "Auth secret used to hash and salt passwords."
|
||||
valueFrom = "${aws_secretsmanager_secret.pmapi.arn}:authSecret::"
|
||||
},
|
||||
{
|
||||
name = "DB_CONN_STRING"
|
||||
description = "Connection string with user credentials."
|
||||
valueFrom = "${aws_secretsmanager_secret.pmapi.arn}:dbConnString::"
|
||||
},
|
||||
{
|
||||
name = "KNOWN_ORIGINS"
|
||||
description = "Connection string with user credentials."
|
||||
valueFrom = "${aws_secretsmanager_secret.pmapi.arn}:knownOrigins::"
|
||||
}
|
||||
]
|
||||
}
|
||||
])
|
||||
|
||||
tags = {
|
||||
Name = local.api_domain_name
|
||||
Environment = local.environment_name
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_ecs_service" "pmapi" {
|
||||
name = local.environment_name
|
||||
cluster = data.terraform_remote_state.jdbsoft.outputs.aws_ecs_cluster_ortis.id
|
||||
task_definition = aws_ecs_task_definition.pmapi.arn
|
||||
desired_count = 1
|
||||
launch_type = "EC2"
|
||||
|
||||
load_balancer {
|
||||
target_group_arn = aws_lb_target_group.pmapi.arn
|
||||
container_name = local.environment_name
|
||||
container_port = 80
|
||||
}
|
||||
|
||||
tags = {
|
||||
Name = local.api_domain_name
|
||||
Environment = local.environment_name
|
||||
}
|
||||
}
|
69
operations/terraform/deployed_env/iam.tf
Normal file
69
operations/terraform/deployed_env/iam.tf
Normal file
@ -0,0 +1,69 @@
|
||||
resource "aws_iam_role" "ecs_task" {
|
||||
name = "${local.environment_name}-EcsTaskRole"
|
||||
|
||||
assume_role_policy = jsonencode({
|
||||
Version = "2012-10-17"
|
||||
Statement = [
|
||||
{
|
||||
Action = "sts:AssumeRole"
|
||||
Effect = "Allow"
|
||||
Sid = ""
|
||||
Principal = {
|
||||
Service = "ecs-tasks.amazonaws.com"
|
||||
}
|
||||
}
|
||||
]
|
||||
})
|
||||
|
||||
inline_policy {
|
||||
name = "AllowSecretsAccessForPmApiTasks"
|
||||
policy = jsonencode({
|
||||
Version = "2012-10-17"
|
||||
Statement = [
|
||||
{
|
||||
Effect = "Allow"
|
||||
Action = [
|
||||
"secretsmanager:GetSecretValue",
|
||||
"kms:Decrypt"
|
||||
]
|
||||
Resource = [
|
||||
aws_secretsmanager_secret.pmapi.arn
|
||||
]
|
||||
}
|
||||
]
|
||||
})
|
||||
}
|
||||
|
||||
inline_policy {
|
||||
name = "AllowAccessToEcrForPmApiTasks"
|
||||
policy = jsonencode({
|
||||
Version = "2012-10-17"
|
||||
Statement = [
|
||||
{
|
||||
Effect = "Allow"
|
||||
Action = [
|
||||
"ecr:GetAuthorizationToken"
|
||||
]
|
||||
Resource = [ "*" ]
|
||||
},
|
||||
{
|
||||
Effect = "Allow"
|
||||
Action = [
|
||||
"ecr:BatchGetImage",
|
||||
"ecr:BatchCheckLayerAvailability",
|
||||
"ecr:DescribeImages",
|
||||
"ecr:GetDownloadUrlForLayer"
|
||||
]
|
||||
Resource = [
|
||||
var.ecr_repo.arn
|
||||
]
|
||||
}
|
||||
]
|
||||
})
|
||||
}
|
||||
|
||||
tags = {
|
||||
Name = "PersonalMeasure-EcsTaskRole"
|
||||
Environment = local.environment_name
|
||||
}
|
||||
}
|
43
operations/terraform/deployed_env/load-balancer.tf
Normal file
43
operations/terraform/deployed_env/load-balancer.tf
Normal file
@ -0,0 +1,43 @@
|
||||
resource "aws_lb_target_group" "pmapi" {
|
||||
name = "${local.environment_name}-${substr(uuid(), 0, 2)}"
|
||||
port = 80
|
||||
protocol = "HTTP"
|
||||
target_type = "instance"
|
||||
vpc_id = data.terraform_remote_state.jdbsoft.outputs.aws_vpc_jdbsoft.id
|
||||
|
||||
health_check {
|
||||
enabled = true
|
||||
matcher = "200"
|
||||
path = "/v0/version"
|
||||
}
|
||||
|
||||
lifecycle {
|
||||
create_before_destroy = true
|
||||
ignore_changes = [name]
|
||||
}
|
||||
|
||||
tags = {
|
||||
Name = local.api_domain_name
|
||||
Environment = local.environment_name
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_lb_listener_rule" "pmapi" {
|
||||
listener_arn = data.terraform_remote_state.jdbsoft.outputs.aws_lb_listener_https.arn
|
||||
|
||||
action {
|
||||
type = "forward"
|
||||
target_group_arn = aws_lb_target_group.pmapi.arn
|
||||
}
|
||||
|
||||
condition {
|
||||
host_header {
|
||||
values = [ local.api_domain_name ]
|
||||
}
|
||||
}
|
||||
|
||||
tags = {
|
||||
Name = "${local.api_domain_name} HTTPS"
|
||||
Environment = local.environment_name
|
||||
}
|
||||
}
|
34
operations/terraform/deployed_env/variables.tf
Normal file
34
operations/terraform/deployed_env/variables.tf
Normal file
@ -0,0 +1,34 @@
|
||||
### Variables
|
||||
|
||||
variable "environment" {
|
||||
description = "The short name of this deployed environment. For example: 'dev' or 'prod'. This short name will be used to name resources (CloudFront distributions, etc.)"
|
||||
}
|
||||
|
||||
variable "artifact_bucket" {
|
||||
description = "The aws_s3_bucket object representing the artifact bucket where deployed artifacts, logs, etc. live."
|
||||
}
|
||||
|
||||
variable "ecr_repo" {
|
||||
description = "ECR repository information."
|
||||
}
|
||||
|
||||
locals {
|
||||
environment_name = "PersonalMeasure-${var.environment}"
|
||||
app_domain_name = "pm${var.environment == "prod" ? "" : "-${var.environment}"}.jdb-software.com"
|
||||
api_domain_name = "pmapi${var.environment == "prod" ? "" : "-${var.environment}"}.jdb-software.com"
|
||||
}
|
||||
|
||||
data "external" "git_describe" {
|
||||
program = ["sh", "-c", "git describe | xargs printf '{\"version\": \"%s\"}'"]
|
||||
}
|
||||
|
||||
data "terraform_remote_state" "jdbsoft" {
|
||||
backend = "s3"
|
||||
|
||||
config = {
|
||||
bucket = "operations.jdb-software.com"
|
||||
region = "us-west-2"
|
||||
key = "terraform/operations.tfstate"
|
||||
dynamodb_table = "terraform-state-lock.jdb-software.com"
|
||||
}
|
||||
}
|
8
operations/terraform/ecr.tf
Normal file
8
operations/terraform/ecr.tf
Normal file
@ -0,0 +1,8 @@
|
||||
resource "aws_ecr_repository" "personal_measure_api" {
|
||||
name = "personal_measure_api"
|
||||
image_tag_mutability = "IMMUTABLE"
|
||||
|
||||
image_scanning_configuration {
|
||||
scan_on_push = true
|
||||
}
|
||||
}
|
34
operations/terraform/main.tf
Normal file
34
operations/terraform/main.tf
Normal file
@ -0,0 +1,34 @@
|
||||
provider "aws" {
|
||||
region = var.aws_region
|
||||
}
|
||||
|
||||
resource "aws_s3_bucket" "personal_measure" {
|
||||
bucket = var.app_root_url
|
||||
acl = "log-delivery-write"
|
||||
}
|
||||
|
||||
module "dev_env" {
|
||||
source = "./deployed_env"
|
||||
|
||||
environment = "dev"
|
||||
artifact_bucket = aws_s3_bucket.personal_measure
|
||||
ecr_repo = aws_ecr_repository.personal_measure_api
|
||||
}
|
||||
|
||||
module "prod_env" {
|
||||
source = "./deployed_env"
|
||||
|
||||
environment = "prod"
|
||||
artifact_bucket = aws_s3_bucket.personal_measure
|
||||
ecr_repo = aws_ecr_repository.personal_measure_api
|
||||
}
|
||||
|
||||
data "aws_iam_policy_document" "cloudfront_access_policy" {
|
||||
source_json = "${module.dev_env.oai_access_policy.json}"
|
||||
override_json = "${module.prod_env.oai_access_policy.json}"
|
||||
}
|
||||
|
||||
resource "aws_s3_bucket_policy" "personal_measure" {
|
||||
bucket = aws_s3_bucket.personal_measure.id
|
||||
policy = data.aws_iam_policy_document.cloudfront_access_policy.json
|
||||
}
|
8
operations/terraform/terraform.tf
Normal file
8
operations/terraform/terraform.tf
Normal file
@ -0,0 +1,8 @@
|
||||
terraform {
|
||||
backend "s3" {
|
||||
bucket = "pm.jdb-software.com"
|
||||
region = "us-west-2"
|
||||
key = "terraform.tfstate"
|
||||
dynamodb_table = "terraform-state-lock.jdb-software.com"
|
||||
}
|
||||
}
|
63
operations/update-version.sh
Executable file
63
operations/update-version.sh
Executable file
@ -0,0 +1,63 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Script to update the version number, commit the changes to the version files,
|
||||
# and tag the new commit.
|
||||
|
||||
set -e
|
||||
|
||||
origDir=$(pwd)
|
||||
rootDir=$(git rev-parse --show-toplevel)
|
||||
cd "$rootDir"
|
||||
|
||||
currentBranch=$(git rev-parse --abbrev-ref HEAD)
|
||||
if [ "$currentBranch" != "develop" ]; then
|
||||
printf "You are currently on the '%s' branch. Is this intended (yes/no)? " "$currentBranch"
|
||||
read -r confirmation
|
||||
|
||||
if [ "$confirmation" != "yes" ]; then exit 1; fi
|
||||
fi
|
||||
|
||||
lastVersion=$(jq -r .version web/package.json)
|
||||
printf "Last version: %s\n" "$lastVersion"
|
||||
printf "New version: "
|
||||
read -r newVersion
|
||||
|
||||
printf "New version will be \"%s\". Is this correct (yes/no)? " "$newVersion"
|
||||
read -r confirmation
|
||||
|
||||
if [ "$confirmation" != "yes" ]; then
|
||||
printf "\n"
|
||||
"$origDir/$0"
|
||||
exit
|
||||
fi
|
||||
|
||||
printf ">> Updating /web/package.json with \"version\": \"%s\"\n" "$newVersion"
|
||||
printf "jq \".version = \\\"%s\\\"\" web/package.json > temp.json\n" "$newVersion"
|
||||
jq ".version = \"${newVersion}\"" web/package.json > temp.json
|
||||
printf "mv temp.json web/package.json\n"
|
||||
mv temp.json web/package.json
|
||||
|
||||
printf ">> Updating /web/package-lock.json with \"version\": \"%s\"\n" "$newVersion"
|
||||
printf "jq \".version = \\\"%s\\\"\" web/package-lock.json > temp.json\n" "$newVersion"
|
||||
jq ".version = \"${newVersion}\"" web/package-lock.json > temp.json
|
||||
printf "mv temp.json web/package-lock.json\n"
|
||||
mv temp.json web/package-lock.json
|
||||
|
||||
printf ">> Updating /api/src/main/nim/personal_measure_apipkg/version.nim with PM_API_VERSION* = \"%s\"" "$newVersion"
|
||||
printf "sed -i \"s/%s/%s/\" api/src/main/nim/personal_measure_apipkg/version.nim" "$lastVersion" "$newVersion"
|
||||
sed -i "s/${lastVersion}/${newVersion}/" api/src/main/nim/personal_measure_apipkg/version.nim
|
||||
|
||||
printf ">> Updating /api/personal_measure_api.nimble with version = \"%s\"" "$newVersion"
|
||||
printf "sed -i \"s/%s/%s/\" api/personal_measure_api.nimble" "$lastVersion" "$newVersion"
|
||||
sed -i "s/${lastVersion}/${newVersion}/" api/personal_measure_api.nimble
|
||||
|
||||
printf ">> Committing new version.\n"
|
||||
printf "git add web/package.json web/package-lock.json api/src/main/nim/personal_measure_apipkg/version.nim"
|
||||
git add web/package.json web/package-lock.json api/src/main/nim/personal_measure_apipkg/version.nim api/personal_measure_api.nimble
|
||||
printf "git commit -m \"Update package version to %s\"\n" "$newVersion"
|
||||
git commit -m "Update package version to ${newVersion}"
|
||||
|
||||
printf ">> Tagging commit.\n"
|
||||
printf "git tag -m \"Version %s\" \"%s\"\n" "$newVersion" "$newVersion"
|
||||
git tag -m "Version ${newVersion}" "${newVersion}"
|
||||
|
4
web/.env.development
Normal file
4
web/.env.development
Normal file
@ -0,0 +1,4 @@
|
||||
NODE_ENV=production
|
||||
VUE_APP_PM_API_BASE=https://pmapi-dev.jdb-software.com/v0
|
||||
VUE_APP_LOG_LEVEL=INFO
|
||||
VUE_APP_API_LOG_LEVEL=ERROR
|
@ -1,3 +1,3 @@
|
||||
VUE_APP_PM_API_BASE=https://pm.jdb-labs.com/api
|
||||
VUE_APP_PM_API_BASE=https://pmapi.jdb-software.com/v0
|
||||
VUE_APP_LOG_LEVEL=INFO
|
||||
VUE_APP_API_LOG_LEVEL=ERROR
|
||||
|
20
web/Makefile
20
web/Makefile
@ -1,23 +1,5 @@
|
||||
API_LOG_LEVEL='WARN'
|
||||
LOG_LEVEL='TRACE'
|
||||
|
||||
build-dev:
|
||||
npm run build-dev
|
||||
|
||||
build:
|
||||
npm run build
|
||||
npm run build-${TARGET_ENV}
|
||||
|
||||
serve:
|
||||
VUE_APP_PM_API_BASE=/api \
|
||||
VUE_APP_API_LOG_LEVEL=${API_LOG_LEVEL} \
|
||||
VUE_APP_LOG_LEVEL=${LOG_LEVEL} \
|
||||
npm run serve
|
||||
|
||||
serve-dev: build-dev
|
||||
(cd dist && npx live-server . --port=8080 --entry-file=index.html --proxy=/api:http://localhost:8081/api --no-browser)
|
||||
|
||||
serve-ssl: build-dev
|
||||
(cd dist && \
|
||||
(local-ssl-proxy --source=8443 --target=8080 & \
|
||||
echo `pwd` && \
|
||||
npx live-server . --port=8080 --entry-file=index.html --proxy=/api:http://localhost:8081/api --no-browser))
|
||||
|
5714
web/package-lock.json
generated
5714
web/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,61 +1,64 @@
|
||||
{
|
||||
"name": "personal-measure-web",
|
||||
"version": "0.2.0",
|
||||
"version": "0.11.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
"build": "vue-cli-service build --mode production",
|
||||
"serve": "npx servor dist",
|
||||
"build-prod": "vue-cli-service build --mode production",
|
||||
"build-dev": "vue-cli-service build --mode development",
|
||||
"lint": "vue-cli-service lint",
|
||||
"test:unit": "vue-cli-service test:unit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^1.2.15",
|
||||
"@fortawesome/free-solid-svg-icons": "^5.7.2",
|
||||
"@fortawesome/vue-fontawesome": "^0.1.5",
|
||||
"@types/js-cookie": "^2.2.1",
|
||||
"@fortawesome/fontawesome-svg-core": "^1.2.31",
|
||||
"@fortawesome/free-solid-svg-icons": "^5.15.0",
|
||||
"@fortawesome/vue-fontawesome": "^0.1.10",
|
||||
"@types/js-cookie": "^2.2.6",
|
||||
"@types/jwt-decode": "^2.2.1",
|
||||
"@types/lodash.assign": "^4.2.6",
|
||||
"@types/lodash.findindex": "^4.6.6",
|
||||
"@types/lodash.merge": "^4.6.5",
|
||||
"apexcharts": "^3.6.5",
|
||||
"axios": "^0.18.0",
|
||||
"js-cookie": "^2.2.0",
|
||||
"@types/lodash.merge": "^4.6.6",
|
||||
"@types/lodash.omit": "^4.5.6",
|
||||
"apexcharts": "^3.21.0",
|
||||
"axios": "^0.18.1",
|
||||
"js-cookie": "^2.2.1",
|
||||
"jwt-decode": "^2.2.0",
|
||||
"keen-ui": "^1.1.2",
|
||||
"keen-ui": "^1.3.1",
|
||||
"lodash.assign": "^4.2.0",
|
||||
"lodash.findindex": "^4.6.0",
|
||||
"lodash.keyby": "^4.6.0",
|
||||
"lodash.merge": "^4.6.1",
|
||||
"moment": "^2.24.0",
|
||||
"register-service-worker": "^1.5.2",
|
||||
"vue": "^2.6.6",
|
||||
"vue-apexcharts": "^1.3.2",
|
||||
"lodash.merge": "^4.6.2",
|
||||
"lodash.omit": "^4.5.0",
|
||||
"moment": "^2.29.0",
|
||||
"register-service-worker": "^1.7.1",
|
||||
"vue": "^2.6.12",
|
||||
"vue-apexcharts": "^1.6.0",
|
||||
"vue-class-component": "^6.0.0",
|
||||
"vue-property-decorator": "^7.0.0",
|
||||
"vue-router": "^3.0.1",
|
||||
"vue-router": "^3.4.5",
|
||||
"vuejs-smart-table": "0.0.3",
|
||||
"vuex": "^3.0.1",
|
||||
"vuex-module-decorators": "^0.9.8"
|
||||
"vuex": "^3.5.1",
|
||||
"vuex-module-decorators": "^0.9.11"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jest": "^23.1.4",
|
||||
"@types/lodash.keyby": "^4.6.6",
|
||||
"@vue/cli-plugin-babel": "^3.4.0",
|
||||
"@vue/cli-plugin-pwa": "^3.4.0",
|
||||
"@vue/cli-plugin-typescript": "^3.4.0",
|
||||
"@vue/cli-plugin-unit-jest": "^3.7.0",
|
||||
"@vue/cli-service": "^3.5.3",
|
||||
"@vue/test-utils": "^1.0.0-beta.20",
|
||||
"@vue/cli-plugin-babel": "^3.12.1",
|
||||
"@vue/cli-plugin-pwa": "^3.12.1",
|
||||
"@vue/cli-plugin-typescript": "^3.12.1",
|
||||
"@vue/cli-plugin-unit-jest": "^3.12.1",
|
||||
"@vue/cli-service": "^3.12.1",
|
||||
"@vue/test-utils": "^1.1.0",
|
||||
"babel-core": "7.0.0-bridge.0",
|
||||
"lint-staged": "^8.1.0",
|
||||
"lint-staged": "^8.2.1",
|
||||
"live-server": "^1.2.1",
|
||||
"node-sass": "^4.12.0",
|
||||
"sass-loader": "^7.1.0",
|
||||
"node-sass": "^4.14.1",
|
||||
"sass-loader": "^7.3.1",
|
||||
"servor": "^4.0.2",
|
||||
"ts-jest": "^23.0.0",
|
||||
"typescript": "^3.0.0",
|
||||
"vue-cli-plugin-webpack-bundle-analyzer": "^1.3.0",
|
||||
"vue-template-compiler": "^2.5.21"
|
||||
"typescript": "^3.9.7",
|
||||
"vue-cli-plugin-webpack-bundle-analyzer": "^1.4.0",
|
||||
"vue-template-compiler": "^2.6.12"
|
||||
},
|
||||
"gitHooks": {
|
||||
"pre-commit": "lint-staged"
|
||||
|
@ -2,6 +2,7 @@
|
||||
<div id="app">
|
||||
<NavBar></NavBar>
|
||||
<router-view class=main />
|
||||
<span id="personal-measure-version" hidden>{{ version }}</span>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" src="./app.ts"></script>
|
||||
|
@ -2,19 +2,40 @@
|
||||
<fieldset>
|
||||
<div>
|
||||
<label for=measureType>Type</label>
|
||||
<span v-if=measureExists>{{value.type}}</span>
|
||||
<select
|
||||
:disabled=disabled
|
||||
name=measureType
|
||||
v-if="!measureExists"
|
||||
v-model=value.type>
|
||||
<option value=simple>Simple</option>
|
||||
<option value=list>List</option>
|
||||
<option value=text>Text</option>
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
<label for=measureIsVisible>Show by default.</label>
|
||||
<input type=checkbox v-model=value.isVisible :disabled=disabled />
|
||||
</div>
|
||||
<!--<ListMeasureConfigForm :config=config v-show="config.type === 'list'"/>-->
|
||||
<div>
|
||||
<label for=timestampDisplayFormat>Timestamp Format</label>
|
||||
<select
|
||||
v-on:change=formatSelectionChanged
|
||||
:disabled=disabled
|
||||
v-model=selectedFormat
|
||||
name=timestampDisplayFormat>
|
||||
<option v-for="fmtStr in formatStrings"
|
||||
:value=fmtStr>{{now.format(fmtStr)}}</option>
|
||||
<option value="custom">Custom</option>
|
||||
</select>
|
||||
</div>
|
||||
<div v-if="selectedFormat === 'custom'">
|
||||
<label for=timestampCustomDisplayFormat>
|
||||
Custom Timestamp Format
|
||||
(<a target="_blank" href="https://momentjs.com/docs/#/displaying/format/">see formatting options</a>)
|
||||
</label>
|
||||
<input type=text v-model=value.timestampDisplayFormat />
|
||||
</div>
|
||||
<TextMeasureConfigForm v-model=value v-show="value.type === 'text'" :disabled=disabled />
|
||||
</fieldset>
|
||||
</template>
|
||||
<script lang=ts src=./measure-config-form.ts></script>
|
||||
|
10
web/src/components/measure-config/TextMeasureConfigForm.vue
Normal file
10
web/src/components/measure-config/TextMeasureConfigForm.vue
Normal file
@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<div>
|
||||
<label for=textEntryShowTimestamp>Show Timestamps.</label>
|
||||
<input name=textEntryShowTimestamp
|
||||
:disabled=disabled
|
||||
type=checkbox
|
||||
v-model=value.showTimestamp />
|
||||
</div>
|
||||
</template>
|
||||
<script lang=ts src=./text-measure-config-form.ts></script>
|
@ -1,17 +1,60 @@
|
||||
import { Component, Emit, Prop, Vue, Watch } from 'vue-property-decorator';
|
||||
import { logService } from '@/services/logging';
|
||||
import { Measure, MeasureConfig } from '@/models';
|
||||
import TextMeasureConfigForm from './TextMeasureConfigForm.vue';
|
||||
import moment from 'moment';
|
||||
|
||||
@Component({})
|
||||
@Component({
|
||||
components: {
|
||||
TextMeasureConfigForm
|
||||
}
|
||||
})
|
||||
export class MeasureConfigForm extends Vue {
|
||||
@Prop({}) public value!: MeasureConfig;
|
||||
@Prop({}) public disabled: boolean = false;
|
||||
@Prop({}) public measureExists!: boolean;
|
||||
|
||||
public now = moment();
|
||||
public formatStrings = [
|
||||
'l',
|
||||
'L',
|
||||
'll',
|
||||
'LL',
|
||||
'lll',
|
||||
'LLL',
|
||||
'llll',
|
||||
'LLLL',
|
||||
'Y-MM-DD',
|
||||
'Y-MM-DDTHH:mm',
|
||||
'Y-MM-DDTHH:mm:ss',
|
||||
'Y-MM-DDTHH:mm:ss.SSSZZ',
|
||||
'MM/DD',
|
||||
'MMM Do',
|
||||
'HH:mm',
|
||||
'hh:mmA'
|
||||
];
|
||||
|
||||
private selectedFormat: string = 'l';
|
||||
|
||||
@Watch('value', { immediate: true, deep: true })
|
||||
@Emit('input')
|
||||
private onConfigChanged(newVal: MeasureConfig, oldVal: MeasureConfig) {
|
||||
return newVal;
|
||||
}
|
||||
|
||||
private formatSelectionChanged() {
|
||||
if (this.selectedFormat !== 'custom') {
|
||||
this.value.timestampDisplayFormat = this.selectedFormat;
|
||||
}
|
||||
}
|
||||
|
||||
private mounted() {
|
||||
if (this.formatStrings.includes(this.value.timestampDisplayFormat)) {
|
||||
this.selectedFormat = this.value.timestampDisplayFormat;
|
||||
} else {
|
||||
this.selectedFormat = 'custom';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default MeasureConfigForm;
|
||||
|
@ -0,0 +1,17 @@
|
||||
import { Component, Emit, Prop, Vue, Watch } from 'vue-property-decorator';
|
||||
import { logService } from '@/services/logging';
|
||||
import { Measure, MeasureConfig, TextMeasureConfig } from '@/models';
|
||||
|
||||
@Component({})
|
||||
export class TextMeasureConfigForm extends Vue {
|
||||
@Prop({}) public value!: MeasureConfig;
|
||||
@Prop({}) public disabled: boolean = false;
|
||||
|
||||
@Watch('value', { immediate: true, deep: true })
|
||||
@Emit('input')
|
||||
private onConfigChanged(newVal: TextMeasureConfig, oldVal: TextMeasureConfig) {
|
||||
return newVal;
|
||||
}
|
||||
}
|
||||
|
||||
export default TextMeasureConfigForm;
|
@ -2,6 +2,8 @@
|
||||
<div>
|
||||
<SimpleDetails v-if="measure.config.type === 'simple'"
|
||||
:measure=measure :measurements=measurements />
|
||||
<TextDetails v-if="measure.config.type === 'text'"
|
||||
:measure=measure :measurements=measurements />
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" src="./measure-details.ts"></script>
|
||||
|
@ -15,7 +15,6 @@
|
||||
</tr>
|
||||
</tbody>
|
||||
</v-table>
|
||||
<SimpleEntry :measure=measure v-model=
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" src="./simple-details.ts"></script>
|
||||
|
22
web/src/components/measure-details/TextDetails.vue
Normal file
22
web/src/components/measure-details/TextDetails.vue
Normal file
@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class=text-details>
|
||||
<v-table :data=measurementTableData>
|
||||
<thead slot=head>
|
||||
<tr>
|
||||
<v-th
|
||||
v-if="measure.config.showTimestamp"
|
||||
sortKey=tsSort
|
||||
defaultSort=asc>Timestamp</v-th>
|
||||
<v-th sortKey=value>{{measure.name}}</v-th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody slot=body slot-scope={displayData} >
|
||||
<tr v-for="row in displayData" :key="row.id">
|
||||
<td v-if="measure.config.showTimestamp">{{row.tsDisplay}}</td>
|
||||
<td>{{row.extData.entry}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</v-table>
|
||||
</div>
|
||||
</template>
|
||||
<script lang=ts src=./text-details.ts></script>
|
@ -1,9 +1,13 @@
|
||||
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||||
import { Measure, MeasureConfig, MeasureType, Measurement, MeasurementMeta } from '@/models';
|
||||
import SimpleDetails from './SimpleDetails.vue';
|
||||
import TextDetails from './TextDetails.vue';
|
||||
|
||||
@Component({
|
||||
components: { SimpleDetails }
|
||||
components: {
|
||||
SimpleDetails,
|
||||
TextDetails
|
||||
}
|
||||
})
|
||||
export class MeasureDetails extends Vue {
|
||||
@Prop() private measure!: Measure<MeasureConfig>;
|
||||
|
@ -1,9 +1,9 @@
|
||||
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||||
import { Measure, MeasureConfig, MeasureType, Measurement, MeasurementMeta } from '@/models';
|
||||
import moment from 'moment';
|
||||
import assign from 'lodash.assign';
|
||||
import { library } from '@fortawesome/fontawesome-svg-core';
|
||||
import { faPencilAlt } from '@fortawesome/free-solid-svg-icons';
|
||||
import { byTimestampComparator, formatTS } from '@/util';
|
||||
|
||||
library.add(faPencilAlt);
|
||||
|
||||
@ -12,28 +12,29 @@ export class SimpleDetails extends Vue {
|
||||
@Prop() private measure!: Measure<MeasureConfig>;
|
||||
@Prop() private measurements!: Array<Measurement<MeasurementMeta>>;
|
||||
|
||||
// private newMeasurement;
|
||||
private moment = moment;
|
||||
private chartOptions = {
|
||||
markers: { size: 6 },
|
||||
noData: { text: 'no data',
|
||||
style: { fontSize: '18px' } },
|
||||
stroke: { curve: 'smooth' },
|
||||
stroke: { curve: 'straight' },
|
||||
xaxis: { type: 'datetime' }
|
||||
};
|
||||
|
||||
private get measurementChartData(): ApexAxisChartSeries {
|
||||
const measurementData = this.measurements || [];
|
||||
const measurementData = this.measurements.slice() || [];
|
||||
|
||||
return [{
|
||||
name: this.measure.name,
|
||||
data: measurementData.map((m) => ({ x: m.timestamp.toISOString(), y: m.value }))
|
||||
data: measurementData
|
||||
.sort(byTimestampComparator)
|
||||
.map((m) => ({ x: m.timestamp.toISOString(), y: m.value }))
|
||||
}];
|
||||
}
|
||||
|
||||
private get measurementTableData() {
|
||||
return (this.measurements || []).map((m) => {
|
||||
return assign({}, m, {
|
||||
tsDisplay: moment(m.timestamp).format('MMM Do, HH:mm'),
|
||||
tsDisplay: formatTS(this.measure, m),
|
||||
tsSort: m.timestamp.toISOString()
|
||||
});
|
||||
});
|
||||
|
22
web/src/components/measure-details/text-details.ts
Normal file
22
web/src/components/measure-details/text-details.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||||
import assign from 'lodash.assign';
|
||||
import { Measure, Measurement, TextMeasureConfig, TextMeasurementMeta } from '@/models';
|
||||
import { formatTS } from '@/util';
|
||||
|
||||
@Component({})
|
||||
export class TextDetails extends Vue {
|
||||
@Prop() private measure!: Measure<TextMeasureConfig>;
|
||||
@Prop() private measurements!: Array<Measurement<TextMeasurementMeta>>;
|
||||
|
||||
private get measurementTableData() {
|
||||
return (this.measurements || []).map((m) => {
|
||||
return assign({}, m, {
|
||||
tsDisplay: formatTS(this.measure, m),
|
||||
tsSort: m.timestamp.toISOString()
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default TextDetails;
|
@ -1,6 +0,0 @@
|
||||
<template>
|
||||
<ul>
|
||||
<li v-for="m in top5">{{m.extData.entry}}</li>
|
||||
</ul>
|
||||
</template>
|
||||
<script lang="ts" src="./list-summary.ts"></script>
|
@ -1,11 +1,11 @@
|
||||
<template>
|
||||
<div v-if="measure.config.isVisible" class="measure-summary" :data-name="'measure-' + measure.slug">
|
||||
<div v-if="measure.config.isVisible" v-bind:key="measure.slug" class="measure-summary" :data-name="'measure-' + measure.slug">
|
||||
<h2><router-link
|
||||
:to="'/measures/' + measure.slug">
|
||||
{{measure.name}}</router-link></h2>
|
||||
<SimpleSummaryGraph v-if="measure.config.type === 'simple'"
|
||||
:measure=measure :measurements=measurements />
|
||||
<ListSummary v-if="measure.config.type === 'list'"
|
||||
<TextSummary v-if="measure.config.type === 'text'"
|
||||
:measure=measure :measurements=measurements />
|
||||
</div>
|
||||
</template>
|
||||
|
13
web/src/components/measure-summaries/TextSummary.vue
Normal file
13
web/src/components/measure-summaries/TextSummary.vue
Normal file
@ -0,0 +1,13 @@
|
||||
<template>
|
||||
<ul>
|
||||
<li
|
||||
v-for="m in top5"
|
||||
v-bind:class="{ 'show-timestamp': measure.config.showTimestamp,
|
||||
'full-timestamp': !withinLastYear }">
|
||||
<span class=timestamp>{{formatDate(m.timestamp)}}</span>
|
||||
<span class=entry>{{m.extData.entry}}</span>
|
||||
</li>
|
||||
</ul>
|
||||
</template>
|
||||
<script lang="ts" src="./text-summary.ts"></script>
|
||||
<style scoped lang="scss" src="./text-summary.scss"></script>
|
@ -1,16 +0,0 @@
|
||||
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||||
import { Measure, ListMeasureConfig, Measurement, ListMeasurementMeta } from '@/models';
|
||||
|
||||
@Component
|
||||
export class ListSummary extends Vue {
|
||||
@Prop() private measure!: Measure<ListMeasureConfig>;
|
||||
@Prop() private measurements!: Array<Measurement<ListMeasurementMeta>>;
|
||||
|
||||
private top5(): Array<Measurement<ListMeasurementMeta>> {
|
||||
return this.measurements
|
||||
.sort((a, b) => b.timestamp.getTime() - a.timestamp.getTime())
|
||||
.slice(0, 5);
|
||||
}
|
||||
}
|
||||
|
||||
export default ListSummary;
|
@ -1,12 +1,12 @@
|
||||
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||||
import { Measure, MeasureConfig, MeasureType, Measurement, MeasurementMeta } from '@/models';
|
||||
import { measurementStore } from '@/store';
|
||||
import ListSummary from './ListSummary.vue';
|
||||
import TextSummary from './TextSummary.vue';
|
||||
import SimpleSummaryGraph from './SimpleSummaryGraph.vue';
|
||||
|
||||
@Component({
|
||||
components: {
|
||||
ListSummary,
|
||||
TextSummary,
|
||||
SimpleSummaryGraph
|
||||
}
|
||||
})
|
||||
|
@ -9,18 +9,20 @@ export class SimpleSummaryGraph extends Vue {
|
||||
private chartOptions = {
|
||||
chart: { sparkline: { enabled: true } },
|
||||
grid: { padding: { top: 20 }},
|
||||
stroke: { curve: 'smooth' },
|
||||
stroke: { curve: 'straight' },
|
||||
noData: { text: 'no data',
|
||||
style: { fontSize: '18px' } },
|
||||
xaxis: { type: 'datetime' }
|
||||
};
|
||||
|
||||
private get measurementData(): ApexAxisChartSeries {
|
||||
const measurementData = this.measurements || [];
|
||||
const measurementData = this.measurements.slice() || [];
|
||||
|
||||
return [{
|
||||
name: this.measure.name,
|
||||
data: measurementData.map((m) => ({ x: m.timestamp.toISOString(), y: m.value }))
|
||||
data: measurementData
|
||||
.sort((a, b) => a.timestamp.getTime() - b.timestamp.getTime())
|
||||
.map((m) => ({ x: m.timestamp.toISOString(), y: m.value }))
|
||||
}];
|
||||
}
|
||||
}
|
||||
|
39
web/src/components/measure-summaries/text-summary.scss
Normal file
39
web/src/components/measure-summaries/text-summary.scss
Normal file
@ -0,0 +1,39 @@
|
||||
@import '~@/styles/vars';
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0.5rem 0;
|
||||
|
||||
li {
|
||||
span {
|
||||
display: inline-block;
|
||||
vertical-align: bottom;
|
||||
|
||||
&.timestamp {
|
||||
color: $color2;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
&.entry {
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
&:not(.show-timestamp) {
|
||||
span.timestamp { display: none; }
|
||||
span.entry { width: 100%; }
|
||||
}
|
||||
|
||||
&.show-timestamp {
|
||||
span.timestamp { width: 5rem; }
|
||||
span.entry { width: calc(100% - 5rem); }
|
||||
}
|
||||
|
||||
&.show-timestamp.full-timestamp {
|
||||
span.timestamp { width: 6rem; }
|
||||
span.entry { width: calc(100% - 6rem); }
|
||||
}
|
||||
}
|
||||
}
|
33
web/src/components/measure-summaries/text-summary.ts
Normal file
33
web/src/components/measure-summaries/text-summary.ts
Normal file
@ -0,0 +1,33 @@
|
||||
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
|
||||
import moment from 'moment';
|
||||
import { Measure, TextMeasureConfig, Measurement, TextMeasurementMeta } from '@/models';
|
||||
import { byTimestampComparator } from '@/util';
|
||||
|
||||
const YEAR_START = moment().startOf('year');
|
||||
|
||||
@Component
|
||||
export class TextSummary extends Vue {
|
||||
@Prop() private measure!: Measure<TextMeasureConfig>;
|
||||
@Prop() private measurements!: Array<Measurement<TextMeasurementMeta>>;
|
||||
|
||||
private top5: Array<Measurement<TextMeasurementMeta>> = [];
|
||||
private withinLastYear: boolean = true;
|
||||
|
||||
@Watch('measurements')
|
||||
private onMeasurementsChanged() {
|
||||
this.top5 = this.measurements
|
||||
.slice(0)
|
||||
.sort(byTimestampComparator)
|
||||
.slice(0, 5);
|
||||
|
||||
this.withinLastYear = this.top5.every((entry) => YEAR_START.isBefore(entry.timestamp));
|
||||
}
|
||||
|
||||
private formatDate(ts: Date) {
|
||||
if (this.withinLastYear) { return moment(ts).format('MMM. Do'); }
|
||||
else { return moment(ts).format('YYYY-MM-DD'); }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default TextSummary;
|
@ -2,6 +2,8 @@
|
||||
<div>
|
||||
<SimpleEntry v-if="measure.config.type === 'simple'"
|
||||
:measure=measure v-model=value />
|
||||
<TextEntry v-if="measure.config.type === 'text'"
|
||||
:measure=measure v-model=value />
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" src="./measurement-entry.ts"></script>
|
||||
|
@ -2,7 +2,9 @@
|
||||
<fieldset>
|
||||
<div>
|
||||
<label for=timestamp>Timestamp</label>
|
||||
<input type=datetime-local
|
||||
<input
|
||||
name=timestamp
|
||||
type=datetime-local
|
||||
v-model=value.timestamp
|
||||
v-show=editTimestamp
|
||||
:disabled=disabled />
|
||||
@ -12,7 +14,7 @@
|
||||
</div>
|
||||
<div>
|
||||
<label for=measurementValue>{{measure.name}}</label>
|
||||
<input required type=number v-model=value.value :disabled=disabled />
|
||||
<input name=measurementValue required type=number step=any v-model.number=value.value :disabled=disabled />
|
||||
</div>
|
||||
</fieldset>
|
||||
</template>
|
||||
|
26
web/src/components/measurement-entry/TextEntry.vue
Normal file
26
web/src/components/measurement-entry/TextEntry.vue
Normal file
@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<fieldset>
|
||||
<div>
|
||||
<label for=timestamp>Timestamp</label>
|
||||
<input
|
||||
name=timestamp
|
||||
type=datetime-local
|
||||
v-model=value.timestamp
|
||||
v-show=editTimestamp
|
||||
:disabled=disabled />
|
||||
<span v-show="!editTimestamp">
|
||||
now <a href="#" v-on:click.stop.prevent="editTimestamp = true"> (set a time)</a>
|
||||
</span>
|
||||
</div>
|
||||
<div>
|
||||
<label for=measurementEntry>{{measure.name}}</label>
|
||||
<input
|
||||
name=measurementEntry
|
||||
required
|
||||
type=text
|
||||
v-model=value.extData.entry
|
||||
:disabled=disabled />
|
||||
</div>
|
||||
</fieldset>
|
||||
</template>
|
||||
<script lang="ts" src="./text-entry.ts"></script>
|
@ -1,9 +1,13 @@
|
||||
import { Component, Emit, Prop, Vue, Watch } from 'vue-property-decorator';
|
||||
import { Measure, MeasureConfig, MeasureType, Measurement, MeasurementMeta } from '@/models';
|
||||
import SimpleEntry from './SimpleEntry.vue';
|
||||
import TextEntry from './TextEntry.vue';
|
||||
|
||||
@Component({
|
||||
components: { SimpleEntry }
|
||||
components: {
|
||||
SimpleEntry,
|
||||
TextEntry
|
||||
}
|
||||
})
|
||||
export class MeasurementEntry extends Vue {
|
||||
@Prop() private measure!: Measure<MeasureConfig>;
|
||||
|
@ -5,14 +5,12 @@ import { Measure, MeasureConfig, MeasureType, Measurement, MeasurementMeta } fro
|
||||
export class SimpleEntry extends Vue {
|
||||
@Prop() public measure!: Measure<MeasureConfig>;
|
||||
@Prop() public value!: Measurement<MeasurementMeta>;
|
||||
@Prop() public disabled: boolean = false;
|
||||
@Prop() public disabled!: boolean;
|
||||
private editTimestamp: boolean = false;
|
||||
|
||||
@Watch('value', { immediate: true, deep: true })
|
||||
@Emit('input')
|
||||
private onMeasurementChanged(newVal: Measurement<MeasurementMeta>, oldVal: Measurement<MeasurementMeta>) {
|
||||
newVal.extData.measureType = 'simple' as MeasureType;
|
||||
|
||||
if (typeof(newVal.value) === 'string' ) {
|
||||
newVal.value = parseInt(newVal.value, 10);
|
||||
}
|
||||
|
13
web/src/components/measurement-entry/text-entry.ts
Normal file
13
web/src/components/measurement-entry/text-entry.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import { Component, Emit, Prop, Vue, Watch } from 'vue-property-decorator';
|
||||
import { Measure, MeasureConfig, MeasureType, Measurement, MeasurementMeta } from '@/models';
|
||||
|
||||
@Component({})
|
||||
export class TextEntry extends Vue {
|
||||
@Prop() public measure!: Measure<MeasureConfig>;
|
||||
@Prop() public value!: Measurement<MeasurementMeta>;
|
||||
@Prop() public disabled!: boolean;
|
||||
private editTimestamp: boolean = false;
|
||||
|
||||
}
|
||||
|
||||
export default TextEntry;
|
8
web/src/models.d.ts
vendored
8
web/src/models.d.ts
vendored
@ -1,4 +1,4 @@
|
||||
export enum MeasureType { List = 'list', Simple = 'simple' }
|
||||
export enum MeasureType { Text = 'text', Simple = 'simple' }
|
||||
|
||||
export interface ApiToken {
|
||||
id: string;
|
||||
@ -17,9 +17,10 @@ export interface LoginSubmit {
|
||||
export interface MeasureConfig {
|
||||
type: MeasureType;
|
||||
isVisible: boolean;
|
||||
timestampDisplayFormat: string;
|
||||
}
|
||||
|
||||
export interface ListMeasureConfig extends MeasureConfig {
|
||||
export interface TextMeasureConfig extends MeasureConfig {
|
||||
showTimestamp: boolean;
|
||||
}
|
||||
|
||||
@ -33,10 +34,9 @@ export interface Measure<C extends MeasureConfig> {
|
||||
}
|
||||
|
||||
export interface MeasurementMeta {
|
||||
measureType: MeasureType;
|
||||
}
|
||||
|
||||
export interface ListMeasurementMeta extends MeasurementMeta {
|
||||
export interface TextMeasurementMeta extends MeasurementMeta {
|
||||
entry: string;
|
||||
}
|
||||
|
||||
|
@ -7,6 +7,8 @@ import Measure from '@/views/Measure.vue';
|
||||
import Measures from '@/views/Measures.vue';
|
||||
import NewMeasure from '@/views/NewMeasure.vue';
|
||||
import NewMeasurement from '@/views/NewMeasurement.vue';
|
||||
import DeleteMeasure from '@/views/DeleteMeasure.vue';
|
||||
import EditMeasure from '@/views/EditMeasure.vue';
|
||||
import NotFound from '@/views/NotFound.vue';
|
||||
import QuickPanels from '@/views/QuickPanels.vue';
|
||||
import UserAccount from '@/views/UserAccount.vue';
|
||||
@ -68,6 +70,16 @@ const router = new Router({
|
||||
name: 'new-measurement',
|
||||
component: NewMeasurement
|
||||
},
|
||||
{
|
||||
path: '/delete/measure/:slug',
|
||||
name: 'delete-measure',
|
||||
component: DeleteMeasure
|
||||
},
|
||||
{
|
||||
path: '/edit/measure/:slug',
|
||||
name: 'edit-measure',
|
||||
component: EditMeasure
|
||||
},
|
||||
{
|
||||
path: '*',
|
||||
name: 'not-found',
|
||||
|
@ -1,6 +1,5 @@
|
||||
import { LogLevel } from './log-message';
|
||||
import Logger from './logger';
|
||||
import { default as Axios, AxiosInstance } from 'axios';
|
||||
|
||||
const ROOT_LOGGER_NAME = 'ROOT';
|
||||
|
||||
@ -8,7 +7,6 @@ const ROOT_LOGGER_NAME = 'ROOT';
|
||||
export class LogService {
|
||||
|
||||
private loggers: { [key: string]: Logger };
|
||||
private http: AxiosInstance = Axios.create();
|
||||
|
||||
public get ROOT_LOGGER() {
|
||||
return this.loggers[ROOT_LOGGER_NAME];
|
||||
|
@ -123,6 +123,11 @@ export class PmApiClient {
|
||||
return resp.data;
|
||||
}
|
||||
|
||||
public async updateMeasure<T extends MeasureConfig>(measure: Measure<T>): Promise<Measure<T>> {
|
||||
const resp = await this.http.post(`/measures/${measure.slug}`, measure);
|
||||
return resp.data;
|
||||
}
|
||||
|
||||
public async deleteMeasure(slug: string): Promise<boolean> {
|
||||
const resp = await this.http.delete(`/measures/${slug}`);
|
||||
return true;
|
||||
@ -131,7 +136,7 @@ export class PmApiClient {
|
||||
public async getMeasurements(measureSlug: string)
|
||||
: Promise<Array<Measurement<MeasurementMeta>>> {
|
||||
|
||||
const resp = await this.http.get(`/measure/${measureSlug}`);
|
||||
const resp = await this.http.get(`/measurements/${measureSlug}`);
|
||||
return resp.data.map(this.fromMeasurementDTO);
|
||||
}
|
||||
|
||||
@ -141,7 +146,7 @@ export class PmApiClient {
|
||||
: Promise<Measurement<MeasurementMeta>> {
|
||||
|
||||
const resp = await this.http.post(
|
||||
`/measure/${measureSlug}`,
|
||||
`/measurements/${measureSlug}`,
|
||||
this.toMeasurementDTO(measurement));
|
||||
return this.fromMeasurementDTO(resp.data);
|
||||
}
|
||||
@ -152,7 +157,7 @@ export class PmApiClient {
|
||||
: Promise<Measurement<MeasurementMeta>> {
|
||||
|
||||
const resp = await this.http
|
||||
.get(`/measure/${measureSlug}/${measurementId}`);
|
||||
.get(`/measurements/${measureSlug}/${measurementId}`);
|
||||
return this.fromMeasurementDTO(resp.data);
|
||||
}
|
||||
|
||||
@ -162,7 +167,7 @@ export class PmApiClient {
|
||||
: Promise<Measurement<MeasurementMeta>> {
|
||||
|
||||
const resp = await this.http.put(
|
||||
`/measure/${measureSlug}/${measurement.id}`,
|
||||
`/measurements/${measureSlug}/${measurement.id}`,
|
||||
this.toMeasurementDTO(measurement));
|
||||
return this.fromMeasurementDTO(resp.data);
|
||||
}
|
||||
@ -173,7 +178,7 @@ export class PmApiClient {
|
||||
: Promise<boolean> {
|
||||
|
||||
const resp = await this.http
|
||||
.delete(`/measure/${measureSlug}/${measurementId}`);
|
||||
.delete(`/measurements/${measureSlug}/${measurementId}`);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -32,7 +32,7 @@ export class AuthStoreModule extends VuexModule {
|
||||
// this should be guaranteed by the server (redirect HTTP -> HTTPS)
|
||||
// but we'll do a sanity check just to make sure.
|
||||
if (window.location.protocol === 'https:' ||
|
||||
process.env.NODE_ENV === 'development') { // allow in dev
|
||||
process.env.NODE_ENV === 'development') { // allow http in dev
|
||||
localStorage.setItem(SESSION_KEY, authToken);
|
||||
}
|
||||
|
||||
|
@ -6,7 +6,9 @@ import {
|
||||
MutationAction,
|
||||
VuexModule
|
||||
} from 'vuex-module-decorators';
|
||||
import assign from 'lodash.assign';
|
||||
import keyBy from 'lodash.keyby';
|
||||
import omit from 'lodash.omit';
|
||||
import { User, Measure, MeasureConfig } from '@/models';
|
||||
import api from '@/services/pm-api-client';
|
||||
|
||||
@ -28,13 +30,29 @@ export class MeasureStoreModule extends VuexModule {
|
||||
}
|
||||
|
||||
@Action({ rawError: true })
|
||||
public async createMeasure(m: Measure<MeasureConfig>) {
|
||||
public async createMeasure<T extends MeasureConfig>(m: Measure<T>) {
|
||||
const newMeasure = await api.createMeasure(m);
|
||||
this.context.commit('SET_MEASURE', newMeasure);
|
||||
return newMeasure;
|
||||
}
|
||||
|
||||
@Action({ rawError: true })
|
||||
public async deleteMeasure<T extends MeasureConfig>(m: Measure<T>) {
|
||||
const delResponse = await api.deleteMeasure(m.slug);
|
||||
this.context.commit('DELETE_MEASURE', m);
|
||||
}
|
||||
|
||||
@Action({ rawError: true })
|
||||
public async updateMeasure<T extends MeasureConfig>(m: Measure<T>) {
|
||||
const updatedMeasure = await api.updateMeasure(m);
|
||||
return updatedMeasure;
|
||||
}
|
||||
|
||||
@Mutation private SET_MEASURE<T extends MeasureConfig>(measure: Measure<T>) {
|
||||
this.measures[measure.slug] = measure;
|
||||
this.measures = assign({}, this.measures, {[measure.slug]: measure});
|
||||
}
|
||||
|
||||
@Mutation private DELETE_MEASURE<T extends MeasureConfig>(measure: Measure<T>) {
|
||||
this.measures = assign({}, omit(this.measures, measure.slug));
|
||||
}
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ export class MeasurementStoreModule extends VuexModule {
|
||||
const newMeasurements = existing.slice();
|
||||
|
||||
const index = findIndex(existing, { id: measurement.id });
|
||||
if (index > 0) { newMeasurements.push(measurement); }
|
||||
if (index < 0) { newMeasurements.push(measurement); }
|
||||
else { newMeasurements[index] = measurement; }
|
||||
this.measurements = assign({}, this.measurements, { [measure.id]: newMeasurements });
|
||||
}
|
||||
|
@ -1,7 +1,9 @@
|
||||
@import '~@/styles/vars';
|
||||
|
||||
button,
|
||||
.btn,
|
||||
.btn-action {
|
||||
.btn-action,
|
||||
.btn-icon {
|
||||
border: 0;
|
||||
border-radius: .25em;
|
||||
cursor: pointer;
|
||||
@ -13,14 +15,27 @@
|
||||
a { text-decoration: none; }
|
||||
}
|
||||
|
||||
.btn, .btn-icon { color: $fg-primary; }
|
||||
|
||||
.btn-icon {
|
||||
|
||||
border-radius: 1em;
|
||||
padding: .5em;
|
||||
margin: 0 .5em;
|
||||
|
||||
&:hover, &:focus {
|
||||
background-color: darken($bg-primary, 20%);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-action {
|
||||
background-color: $color2;
|
||||
color: $color3;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
|
||||
&:hover {
|
||||
background-color: darken($color2, 5%);
|
||||
&:hover, &:focus {
|
||||
background-color: lighten($color2, 20%);
|
||||
}
|
||||
}
|
||||
|
||||
|
25
web/src/util.ts
Normal file
25
web/src/util.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Measure, MeasureConfig, Measurement, MeasurementMeta } from '@/models';
|
||||
import moment from 'moment';
|
||||
|
||||
export function byTimestampComparator<T extends MeasurementMeta>(
|
||||
a: Measurement<T>,
|
||||
b: Measurement<T>): number {
|
||||
return a.timestamp.getTime() - b.timestamp.getTime();
|
||||
}
|
||||
|
||||
export function formatTS(
|
||||
m: Measure<MeasureConfig>,
|
||||
mm: Measurement<MeasurementMeta>
|
||||
): string {
|
||||
return moment(mm.timestamp).format(
|
||||
m.config.timestampDisplayFormat || 'MMM Do');
|
||||
}
|
||||
|
||||
export function slugify(s: string): string {
|
||||
return s
|
||||
.toLowerCase()
|
||||
.replace(/[^\w\s\-]/g, '')
|
||||
.replace(/\s+/g, '-');
|
||||
}
|
||||
|
||||
|
25
web/src/views/DeleteMeasure.vue
Normal file
25
web/src/views/DeleteMeasure.vue
Normal file
@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<div v-if="measure">
|
||||
<div class=header>
|
||||
<h1>Delete Measure</h1>
|
||||
<h2>Are you sure you want to delete {{measure.name}}?</h2>
|
||||
</div>
|
||||
<form @submit.prevent=deleteMeasure() >
|
||||
This will delete all measurements associated with this measure. This
|
||||
cannot be undone.
|
||||
<div v-if='!waiting' class=form-actions>
|
||||
<button class=btn-action>Delete</button>
|
||||
<a class=btn @click="$router.go(-1)">Cancel</a>
|
||||
</div>
|
||||
<div v-if='waiting' class=form-waiting>
|
||||
<div class=wait-spinner>working <fa-icon icon=sync spin /></div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div v-else>
|
||||
<div class=header-action>
|
||||
<h1>There is no measure named {{$route.params.slug}}.</h1>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script lang=ts src=./delete-measure.ts></script>
|
52
web/src/views/EditMeasure.vue
Normal file
52
web/src/views/EditMeasure.vue
Normal file
@ -0,0 +1,52 @@
|
||||
<template>
|
||||
<div id=edit-measure v-if=measure>
|
||||
<div class=header>
|
||||
<h1>Edit Measure</h1>
|
||||
<h2>{{measure.name}}</h2>
|
||||
</div>
|
||||
<form @submit.prevent=updateMeasure() class=edit-measure-form>
|
||||
<fieldset>
|
||||
<div>
|
||||
<label for=measureName>Display Name</label>
|
||||
<input
|
||||
:disabled=waiting
|
||||
type=text
|
||||
name=measureName
|
||||
placeholder="what you are measuring"
|
||||
required
|
||||
v-model="measure.name" />
|
||||
</div>
|
||||
<div>
|
||||
<label for=measureDescription>Description</label>
|
||||
<textarea
|
||||
:disabled=waiting
|
||||
name=measureDescription
|
||||
placeholder="optional description"
|
||||
v-model="measure.description" ></textarea>
|
||||
</div>
|
||||
<div>
|
||||
<label for=measureSlug>Short name (slug)</label>
|
||||
<input
|
||||
:disabled=waiting
|
||||
type=text
|
||||
name=measureDescription
|
||||
:placeholder='slugFromName + " (default)"'
|
||||
:value="measure.slug"
|
||||
@input="measure.slug = slugify($event.target.value)"/>
|
||||
</div>
|
||||
</fieldset>
|
||||
<MeasureConfigForm
|
||||
v-model=measure.config
|
||||
:disabled=waiting
|
||||
measureExists=false />
|
||||
<div v-if='!waiting' class=form-actions>
|
||||
<button class=btn-action>Update</button>
|
||||
<a class=btn @click="$router.go(-1)">Cancel</a>
|
||||
</div>
|
||||
<div v-if='waiting' class=form-waiting>
|
||||
<div class=wait-spinner>working <fa-icon icon=sync spin /></div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</template>
|
||||
<script lang=ts src=./edit-measure.ts></script>
|
@ -5,7 +5,26 @@
|
||||
<h1>{{measure.name}}</h1>
|
||||
<h2>{{measure.description}}</h2>
|
||||
</div>
|
||||
<router-link :to="'/new/measurement/' + measure.slug" class=btn-action>Add Measurement</router-link>
|
||||
<div class=actions>
|
||||
<router-link
|
||||
title="Delete Measure"
|
||||
:to="'/delete/measure/' + measure.slug"
|
||||
class=btn-icon >
|
||||
<fa-icon icon=trash></fa-icon>
|
||||
</router-link>
|
||||
<router-link
|
||||
title="Edit Measure"
|
||||
:to="'/edit/measure/' + measure.slug"
|
||||
class=btn-icon>
|
||||
<fa-icon icon=pencil-alt></fa-icon>
|
||||
</router-link>
|
||||
<router-link
|
||||
title="Add Measurement"
|
||||
:to="'/new/measurement/' + measure.slug"
|
||||
class=btn-action>
|
||||
Add Measurement
|
||||
</router-link>
|
||||
</div>
|
||||
</div>
|
||||
<MeasureDetails :measure=measure :measurements=measurements />
|
||||
</div>
|
||||
@ -16,4 +35,4 @@
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" src="./measure.ts"></script>
|
||||
<style lang="scss" src="./measure.scss"></style>
|
||||
<style scoped lang="scss" src="./measure.scss"></style>
|
||||
|
@ -12,12 +12,9 @@
|
||||
<div class=measure-list>
|
||||
<MeasureSummary
|
||||
v-for="(measure, slug) in measures"
|
||||
v-show="measure.slug.startsWith(filter)"
|
||||
v-bind:key="measure.id"
|
||||
v-show="measure.slug.startsWith(filter.toLowerCase())"
|
||||
:measure=measure />
|
||||
<!--<MeasureSummary
|
||||
v-for="(measure, slug) in measures"
|
||||
:key="slug"
|
||||
:measure=measure />-->
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
38
web/src/views/delete-measure.ts
Normal file
38
web/src/views/delete-measure.ts
Normal file
@ -0,0 +1,38 @@
|
||||
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||||
import { Measure as MeasureModel, MeasureConfig } from '@/models';
|
||||
import { measureStore, measurementStore } from '@/store';
|
||||
import { logService } from '@/services/logging';
|
||||
|
||||
const logger = logService.getLogger('/views/delete-measure');
|
||||
|
||||
@Component({})
|
||||
export class DeleteMeasure extends Vue {
|
||||
private waiting: boolean = false;
|
||||
|
||||
private get measure(): MeasureModel<MeasureConfig> | null {
|
||||
return measureStore.measures[this.$route.params.slug] || null;
|
||||
}
|
||||
|
||||
private async mounted() {
|
||||
if (!this.measure) {
|
||||
await measureStore.fetchMeasure(this.$route.params.slug);
|
||||
}
|
||||
}
|
||||
|
||||
private async deleteMeasure() {
|
||||
if (this.measure) {
|
||||
this.waiting = true;
|
||||
try {
|
||||
await measureStore.deleteMeasure(this.measure);
|
||||
this.$router.push({ name: 'measures' });
|
||||
} catch (e) {
|
||||
// TODO: show errors
|
||||
logger.error('Unable to delete measure. \n\t ' + JSON.stringify(this.measure), e.stack);
|
||||
} finally {
|
||||
this.waiting = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default DeleteMeasure;
|
56
web/src/views/edit-measure.ts
Normal file
56
web/src/views/edit-measure.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
|
||||
import { logService } from '@/services/logging';
|
||||
import { measureStore, userStore } from '@/store';
|
||||
import { Measure, MeasureConfig, MeasureType } from '@/models';
|
||||
import MeasureConfigForm from '@/components/measure-config/MeasureConfigForm.vue';
|
||||
import { slugify } from '@/util';
|
||||
|
||||
const logger = logService.getLogger('/views/edit-measure');
|
||||
|
||||
@Component({
|
||||
components: { MeasureConfigForm }
|
||||
})
|
||||
export class EditMeasure extends Vue {
|
||||
private waiting = false;
|
||||
|
||||
private get measure(): Measure<MeasureConfig> | null {
|
||||
return measureStore.measures[this.$route.params.slug] || null;
|
||||
}
|
||||
|
||||
private get slugFromName() {
|
||||
if (this.measure) {
|
||||
return slugify(this.measure.name);
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
private async updateMeasure() {
|
||||
if (this.measure) {
|
||||
if (!this.measure.slug) {
|
||||
this.measure.slug = slugify(this.measure.name);
|
||||
}
|
||||
|
||||
this.waiting = true;
|
||||
try {
|
||||
await measureStore.updateMeasure(this.measure);
|
||||
this.$router.push({name: 'measure', params: { slug: this.measure.slug }});
|
||||
} catch (e) {
|
||||
logger.error('Unable to update measure. \n\t' + JSON.stringify(this.measure), e.stack);
|
||||
} finally {
|
||||
this.waiting = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private async mounted() {
|
||||
// good chance we've already fetched this
|
||||
// TODO: centralize this caching behavior?
|
||||
if (!this.measure) {
|
||||
await measureStore.fetchMeasure(this.$route.params.slug);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default EditMeasure;
|
@ -1,3 +1 @@
|
||||
@import '~@/styles/vars';
|
||||
|
||||
|
||||
|
@ -1,8 +1,14 @@
|
||||
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||||
import { library } from '@fortawesome/fontawesome-svg-core';
|
||||
import { faPencilAlt } from '@fortawesome/free-solid-svg-icons';
|
||||
import { faTrash } from '@fortawesome/free-solid-svg-icons';
|
||||
import { Measure as MeasureModel, MeasureConfig } from '@/models';
|
||||
import { measureStore, measurementStore } from '@/store';
|
||||
import MeasureDetails from '@/components/measure-details/MeasureDetails.vue';
|
||||
|
||||
library.add(faPencilAlt);
|
||||
library.add(faTrash);
|
||||
|
||||
@Component({
|
||||
components: {
|
||||
MeasureDetails
|
||||
|
@ -5,6 +5,7 @@ import { logService } from '@/services/logging';
|
||||
import { measureStore, userStore } from '@/store';
|
||||
import { Measure, MeasureConfig, MeasureType } from '@/models';
|
||||
import MeasureConfigForm from '@/components/measure-config/MeasureConfigForm.vue';
|
||||
import { slugify } from '@/util';
|
||||
|
||||
library.add(faSync);
|
||||
|
||||
@ -19,7 +20,8 @@ export class NewMeasure extends Vue {
|
||||
id: '',
|
||||
config: {
|
||||
type: 'simple' as MeasureType,
|
||||
isVisible: true
|
||||
isVisible: true,
|
||||
timestampDisplayFormat: 'l'
|
||||
},
|
||||
description: '',
|
||||
name: '',
|
||||
@ -28,19 +30,12 @@ export class NewMeasure extends Vue {
|
||||
};
|
||||
|
||||
private get slugFromName() {
|
||||
return this.slugify(this.measure.name);
|
||||
}
|
||||
|
||||
private slugify(s: string): string {
|
||||
return s
|
||||
.toLowerCase()
|
||||
.replace(/[^\w\s\-]/g, '')
|
||||
.replace(/\s+/g, '-');
|
||||
return slugify(this.measure.name);
|
||||
}
|
||||
|
||||
private async createMeasure() {
|
||||
if (!this.measure.slug) {
|
||||
this.measure.slug = this.slugify(this.measure.name);
|
||||
this.measure.slug = slugify(this.measure.name);
|
||||
}
|
||||
|
||||
this.waiting = true;
|
||||
|
@ -22,9 +22,7 @@ export class NewMeasurement extends Vue {
|
||||
measureId: '',
|
||||
value: 0,
|
||||
timestamp: new Date(),
|
||||
extData: {
|
||||
measureType: 'simple' as MeasureType
|
||||
}
|
||||
extData: { }
|
||||
};
|
||||
|
||||
private async mounted() {
|
||||
|
@ -1,5 +1,7 @@
|
||||
.user-account {
|
||||
justify-content: flex-start;
|
||||
|
||||
section {
|
||||
margin-top: 1rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
}
|
||||
|
@ -8,7 +8,7 @@ const VERSION = {
|
||||
module.exports = {
|
||||
devServer: {
|
||||
proxy: {
|
||||
'/api': { target: 'http://localhost:8081' }
|
||||
'/v0': { target: 'http://localhost:8081' }
|
||||
},
|
||||
host: 'localhost',
|
||||
disableHostCheck: true
|
||||
|
Loading…
x
Reference in New Issue
Block a user