Compare commits

...

3 Commits
0.4.3 ... main

Author SHA1 Message Date
03e6c0bf5a Add Suite or Building to Address model.
Bug fixes:
- Fix pagination when pulling from Notion pages.
- Fix the parsing of rollup fields.
2023-02-24 08:53:01 -07:00
ad8f36dc48 Use jdb-software package repo instead of URL-links to dependencies. 2023-02-04 15:20:07 -06:00
3f9eb80713 Update for namespaced_logging v0.3+ 2023-01-28 18:11:01 -06:00
5 changed files with 38 additions and 22 deletions

14
README.md Normal file
View File

@ -0,0 +1,14 @@
# Hope Family Fellowship Notion API Client
## Building
### Software Packages
`hff_notion_api_client` depends on a number of packages which are not yet
available in he official Nim repository. The easiest way to get access to these
packages is to add a new `PackageList` to your [nimble configuration] for the
[JDB Software Nim packages repository]. The url is
`https://git.jdb-software.com/jdb/nim-packages/raw/main/packages.json`
[nimble configuration]: https://github.com/nim-lang/nimble#configuration
[JDB Software Nim packages]: https://git.jdb-software.com/jdb/nim-packages

View File

@ -1,6 +1,6 @@
# Package
version = "0.4.3"
version = "0.5.0"
author = "Jonathan Bernard"
description = "Utilities and bindings for HFF's Notion API."
license = "GPL-3.0-or-later"
@ -9,6 +9,6 @@ srcDir = "src"
# Dependencies
requires "nim >= 1.4.8"
requires "https://git.jdb-software.com/jdb/buffoonery"
requires "https://git.jdb-software.com/jdb/nim-time-utils.git >= 0.5.0"
requires "https://git.jdb-software.com/jdb/nim-namespaced-logging"
# packages from git.jdb-software.com/jdb/nim-packages
requires @["buffoonery", "timeutils >= 0.5.0", "namespaced_logging >= 0.3.1"]

View File

@ -1,11 +1,8 @@
import std/httpclient, std/json, std/logging, std/sequtils, std/tables, std/strutils
import std/[httpclient, json, logging, options, sequtils, tables, strutils]
import buffoonery/jsonutils
import hff_notion_api_client/config
import hff_notion_api_client/models
import hff_notion_api_client/sequtils_ext
import hff_notion_api_client/utils
import hff_notion_api_client/[config, models, sequtils_ext, utils]
type
NotionClientConfig* = object
@ -61,20 +58,19 @@ proc fetchAllPages*(
bodyTemplate = %*{ "page_size": NOTION_MAX_PAGE_SIZE}): seq[JsonNode] =
result = @[]
var nextCursor: string = ""
var nextCursor: Option[string] = none[string]()
while true:
let body = parseJson($bodyTemplate)
if not nextCursor.isEmptyOrWhitespace: body["start_cursor"] = %nextCursor
if nextCursor.isSome: body["start_cursor"] = %nextCursor.get
debug "Fetching pages from database:\n\tPOST " & url & "\n\t" & $body
let jsonResp = parseJson(http.postContent(url, $body))
result = result & jsonResp["results"].getElems
if jsonResp.hasKey("next_cursor") and jsonResp["next_cursor"].kind != JNull:
nextCursor = jsonResp["next_cursor"].getStr
if nextCursor.isEmptyOrWhitespace: break
nextCursor = some(jsonResp["next_cursor"].getStr)
else: break
template fetchDatabaseObject*(notion: NotionClient, dbId: string): untyped =
let resp = notion.http.get(notion.apiBaseUrl & "/databases/" & dbId)

View File

@ -11,6 +11,7 @@ type
city*: string
state*: string
street*: string
suiteOrBuilding*: string
zipCode*: string
createdAt*: Option[DateTime]
lastUpdatedAt*: Option[DateTime]
@ -127,6 +128,7 @@ func toPage*(a: Address): JsonNode =
"City": makeTextProp("rich_text", a.city),
"State": makeSelectProp(a.state),
"Street Address": makeTextProp("title", a.street),
"Suite or Building": makeTextProp("rich_text", a.suiteOrBuilding),
"Zip Code": makeTextProp("rich_text", a.zipCode)
}
}
@ -182,6 +184,7 @@ proc addressFromPage*(page: JsonNode): Address =
city: page.getText("City"),
state: page.getSelect("State"),
street: page.getTitle("Street Address"),
suiteOrBuilding: page.getText("Suite or Building"),
zipCode: page.getText("Zip Code"),
createdAt: some(parseIso8601(page["created_time"].getStr)),
lastUpdatedAt: some(parseIso8601(page["last_edited_time"].getStr)))

View File

@ -8,7 +8,7 @@ const NOTION_DATE_FORMAT = "YYYY-MM-dd"
var logNs {.threadvar.}: LoggingNamespace
template log(): untyped =
if logNs.isNil: logNs = initLoggingNamespace("hff_notion_api_client/utils", lvlInfo)
if logNs.isNil: logNs = getLoggerForNamespace("hff_notion_api_client/utils", lvlInfo)
logNs
proc parseDate(str: string): DateTime =
@ -87,15 +87,18 @@ proc getRollupArrayValues*(page: JsonNode, propName: string): seq[JsonNode] =
proc getRolledupRecordTitles*(page: JsonNode, propName: string): seq[string] =
let rollups = page.getPropNode("rollup", propName)["array"]
if rollups.getElems.len == 0: return @[]
elif rollups.getElems.len != 1 or not rollups.getElems[0].hasKey("title"):
log().debug "Expected exactly one item of type 'title'. Received: \n" & rollups.pretty
raise newException(
ValueError,
"unexpected format of rollup value for '" & propName & "' property")
let titleElems = rollups.getElems[0]["title"]
result = @[]
for rollupItem in rollups.getElems:
if not rollupItem.hasKey("title") or rollupItem["title"].getElems.len != 1:
log().debug "Expected exactly one item of type 'title'. Received: \n" &
rollupItem.pretty
return titleElems.getElems.mapIt(it["plain_text"].getStr)
raise newException(
ValueError,
"unexpected format of rollup value for '" & propName & "' property")
result.add(rollupItem["title"].getElems[0]["plain_text"].getStr)
proc getText*(page: JsonNode, propName: string): string =
let propNode = page.getPropNode("rich_text", propName)