Fix jester options (port, appName).

This commit is contained in:
Jonathan Bernard 2017-04-23 00:19:32 -05:00
parent 3e8bbb1676
commit b402a8eb6d
2 changed files with 14 additions and 14 deletions

View File

@ -1,4 +1,4 @@
import logging, nre, os, osproc, sequtils, streams, strtabs, strutils, tables, tempfile
import logging, nre, os, osproc, sequtils, streams, strtabs, strutils, tables
import private/util
import configuration

View File

@ -3,9 +3,6 @@ import asyncdispatch, bcrypt, jester, json, jwt, os, osproc, sequtils, tempfile,
import ./configuration, ./core, private/util
settings:
port = Port(8180)
type Worker = object
process*: Process
workingDir*: string
@ -114,23 +111,26 @@ proc start*(givenCfg: StrawBossConfig): void =
let stopFuture = newFuture[void]()
var workers: seq[Worker] = @[]
settings:
port = Port(8180)
appName = "/api"
routes:
get "/api/ping":
get "/ping":
resp($(%*"pong"), "application/json")
get "/api/auth-token":
resp(Http501, makeJsonResp(Http501), "application/json")
get "/auth-token":
echo $request.params
try:
let authToken = makeAuthToken(givenCfg, @"username", @"password")
resp("\"" & $authToken & "\"", "application/json")
except: resp(Http401, makeJsonResp(Http401, getCurrentExceptionMsg()))
get "/api/projects":
get "/projects":
requireAuth()
resp($(%(givenCfg.projects)), "application/json")
get "/api/auth-token":
try:
let authToken = makeAuthToken(givenCfg, @"username", @"password")
except: resp(Http401, makeJsonResp(Http401, getCurrentExceptionMsg()))
post "/api/project/@projectName/@stepName/run/@buildRef?":
post "/project/@projectName/@stepName/run/@buildRef?":
workers.add(spawnWorker(RunRequest(
projectName: @"projectName",
stepName: @"stepName",