api: Updates for Nim 1.4.x.
This commit is contained in:
parent
526419afb3
commit
1449e1ffdd
@ -27,7 +27,7 @@ proc loadConfig*(args: Table[string, docopt.Value] = initTable[string, docopt.Va
|
|||||||
try: json = parseFile(filePath)
|
try: json = parseFile(filePath)
|
||||||
except:
|
except:
|
||||||
json = %DEFAULT_CONFIG
|
json = %DEFAULT_CONFIG
|
||||||
if not existsFile(filePath):
|
if not fileExists(filePath):
|
||||||
info "created new configuration file \"" & filePath & "\""
|
info "created new configuration file \"" & filePath & "\""
|
||||||
filePath.writeFile($json)
|
filePath.writeFile($json)
|
||||||
else:
|
else:
|
||||||
@ -114,6 +114,6 @@ Options:
|
|||||||
if args["serve"]: start(ctx)
|
if args["serve"]: start(ctx)
|
||||||
|
|
||||||
except:
|
except:
|
||||||
fatal "pit: " & getCurrentExceptionMsg()
|
fatal "personal_measure_api: " & getCurrentExceptionMsg()
|
||||||
#raise getCurrentException()
|
#raise getCurrentException()
|
||||||
quit(QuitFailure)
|
quit(QuitFailure)
|
||||||
|
@ -97,7 +97,7 @@ proc fromJWT*(ctx: PMApiContext, strTok: string): Session =
|
|||||||
## Validate a given JWT and extract the session data.
|
## Validate a given JWT and extract the session data.
|
||||||
let jwt = toJWT(strTok)
|
let jwt = toJWT(strTok)
|
||||||
var secret = ctx.cfg.authSecret
|
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()
|
jwt.verifyTimeClaims()
|
||||||
|
|
||||||
# Find the user record (if authenticated)
|
# Find the user record (if authenticated)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import db_postgres, fiber_orm, uuids
|
import db_postgres, fiber_orm, sequtils, uuids
|
||||||
|
|
||||||
import ./models
|
import ./models
|
||||||
|
|
||||||
@ -8,7 +8,7 @@ type
|
|||||||
PMApiDb* = ref object
|
PMApiDb* = ref object
|
||||||
conn: DbConn
|
conn: DbConn
|
||||||
|
|
||||||
|
|
||||||
proc connect*(connString: string): PMApiDb =
|
proc connect*(connString: string): PMApiDb =
|
||||||
result = PMApiDb(conn: open("", "", "", connString))
|
result = PMApiDb(conn: open("", "", "", connString))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user