mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
Allow null values in JsonDict.
This commit is contained in:
@@ -1,25 +1,21 @@
|
||||
package org.briarproject.briar.headless.blogs
|
||||
|
||||
import org.briarproject.bramble.api.sync.MessageId
|
||||
import org.briarproject.bramble.identity.output
|
||||
import org.briarproject.briar.api.blog.BlogPostHeader
|
||||
import org.briarproject.briar.api.blog.MessageType
|
||||
import org.briarproject.briar.headless.json.JsonDict
|
||||
|
||||
internal fun BlogPostHeader.output(body: String): JsonDict {
|
||||
val dict = JsonDict(
|
||||
internal fun BlogPostHeader.output(body: String) = JsonDict(
|
||||
"body" to body,
|
||||
"author" to author.output(),
|
||||
"authorStatus" to authorStatus.output(),
|
||||
"type" to type.output(),
|
||||
"id" to id.bytes,
|
||||
"parentId" to parentId?.bytes,
|
||||
"read" to isRead,
|
||||
"rssFeed" to isRssFeed,
|
||||
"timestamp" to timestamp,
|
||||
"timestampReceived" to timeReceived
|
||||
)
|
||||
if (parentId != null) dict["parentId"] = (parentId as MessageId).bytes
|
||||
return dict
|
||||
}
|
||||
|
||||
internal fun MessageType.output() = name.toLowerCase()
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
package org.briarproject.briar.headless.json
|
||||
|
||||
class JsonDict(vararg pairs: Pair<String, Any>) : HashMap<String, Any>(pairs.size) {
|
||||
class JsonDict(vararg pairs: Pair<String, Any?>) : HashMap<String, Any?>(pairs.size) {
|
||||
init {
|
||||
putAll(pairs)
|
||||
}
|
||||
|
||||
fun putAll(vararg pairs: Pair<String, Any>) {
|
||||
fun putAll(vararg pairs: Pair<String, Any?>) {
|
||||
for (p in pairs) put(p.first, p.second)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user