2022-04-03 00:22:42 +00:00
package main
import (
"C"
2022-04-12 12:12:14 +00:00
mobile "github.com/status-im/go-waku/mobile"
2022-04-03 00:22:42 +00:00
)
//export waku_store_query
// Query historic messages using waku store protocol.
// queryJSON must contain a valid json string with the following format:
// {
// "pubsubTopic": "...", // optional string
// "startTime": 1234, // optional, unix epoch time in nanoseconds
// "endTime": 1234, // optional, unix epoch time in nanoseconds
// "contentFilters": [ // optional
2022-07-25 15:28:17 +00:00
// "contentTopic1", "contentTopic2" ...
2022-04-03 00:22:42 +00:00
// ],
// "pagingOptions": {// optional pagination information
// "pageSize": 40, // number
// "cursor": { // optional
// "digest": ...,
// "receiverTime": ...,
// "senderTime": ...,
// "pubsubTopic" ...,
// }
// "forward": true, // sort order
// }
// }
2022-05-06 18:13:10 +00:00
// If the message length is greater than 0, this function should be executed again, setting the `cursor` attribute with the cursor returned in the response
// peerID should contain the ID of a peer supporting the store protocol. Use NULL to automatically select a node
2022-04-03 00:22:42 +00:00
// If ms is greater than 0, the broadcast of the message must happen before the timeout
// (in milliseconds) is reached, or an error will be returned
func waku_store_query ( queryJSON * C . char , peerID * C . char , ms C . int ) * C . char {
2022-04-12 12:12:14 +00:00
response := mobile . StoreQuery ( C . GoString ( queryJSON ) , C . GoString ( peerID ) , int ( ms ) )
return C . CString ( response )
2022-04-03 00:22:42 +00:00
}