2022-04-03 00:22:42 +00:00
package main
import (
"C"
2022-11-09 19:53:01 +00:00
mobile "github.com/waku-org/go-waku/mobile"
2022-04-03 00:22:42 +00:00
)
// Determine if there are enough peers to publish a message on a topic. Use NULL
// to verify the number of peers in the default pubsub topic
2023-03-29 19:20:31 +00:00
//
//export waku_relay_enough_peers
2022-04-03 00:22:42 +00:00
func waku_relay_enough_peers ( topic * C . char ) * C . char {
2022-04-12 12:12:14 +00:00
response := mobile . RelayEnoughPeers ( C . GoString ( topic ) )
return C . CString ( response )
2022-04-03 00:22:42 +00:00
}
2022-05-06 18:13:10 +00:00
// Publish a message using waku relay and returns the message ID. Use NULL for topic to use the default pubsub topic
2022-04-03 00:22:42 +00:00
// If ms is greater than 0, the broadcast of the message must happen before the timeout
2022-05-06 18:13:10 +00:00
// (in milliseconds) is reached, or an error will be returned.
2023-03-29 19:20:31 +00:00
//
//export waku_relay_publish
2022-04-03 00:22:42 +00:00
func waku_relay_publish ( messageJSON * C . char , topic * C . char , ms C . int ) * C . char {
2022-04-12 12:12:14 +00:00
response := mobile . RelayPublish ( C . GoString ( messageJSON ) , C . GoString ( topic ) , int ( ms ) )
return C . CString ( response )
2022-04-03 00:22:42 +00:00
}
2022-05-06 18:13:10 +00:00
// Publish a message encrypted with a secp256k1 public key using waku relay and returns the message ID. Use NULL for topic to use the default pubsub topic.
2022-04-03 00:22:42 +00:00
// publicKey must be a hex string prefixed with "0x" containing a valid secp256k1 public key.
// optionalSigningKey is an optional hex string prefixed with "0x" containing a valid secp256k1 private key for signing the message. Use NULL otherwise
// 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.
2023-03-29 19:20:31 +00:00
//
//export waku_relay_publish_enc_asymmetric
2022-04-03 00:22:42 +00:00
func waku_relay_publish_enc_asymmetric ( messageJSON * C . char , topic * C . char , publicKey * C . char , optionalSigningKey * C . char , ms C . int ) * C . char {
2022-04-12 12:12:14 +00:00
response := mobile . RelayPublishEncodeAsymmetric ( C . GoString ( messageJSON ) , C . GoString ( topic ) , C . GoString ( publicKey ) , C . GoString ( optionalSigningKey ) , int ( ms ) )
return C . CString ( response )
2022-04-03 00:22:42 +00:00
}
2022-05-06 18:13:10 +00:00
// Publish a message encrypted with a 32 bytes symmetric key using waku relay and returns the message ID. Use NULL for topic to use the default pubsub topic.
// symmetricKey must be a hex string prefixed with "0x" containing a 32 bytes symmetric key
2022-04-03 00:22:42 +00:00
// optionalSigningKey is an optional hex string prefixed with "0x" containing a valid secp256k1 private key for signing the message. Use NULL otherwise
// 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.
2023-03-29 19:20:31 +00:00
//
//export waku_relay_publish_enc_symmetric
2022-04-03 00:22:42 +00:00
func waku_relay_publish_enc_symmetric ( messageJSON * C . char , topic * C . char , symmetricKey * C . char , optionalSigningKey * C . char , ms C . int ) * C . char {
2022-04-12 12:12:14 +00:00
response := mobile . RelayPublishEncodeSymmetric ( C . GoString ( messageJSON ) , C . GoString ( topic ) , C . GoString ( symmetricKey ) , C . GoString ( optionalSigningKey ) , int ( ms ) )
return C . CString ( response )
2022-04-03 00:22:42 +00:00
}
// Subscribe to a WakuRelay topic. Set the topic to NULL to subscribe
2022-05-06 18:13:10 +00:00
// to the default topic. Returns a json response. When a message is received,
// a "message" event is emitted containing the message and pubsub topic in which
2022-04-14 15:41:44 +00:00
// the message was received
2023-03-29 19:20:31 +00:00
//
//export waku_relay_subscribe
2022-04-03 00:22:42 +00:00
func waku_relay_subscribe ( topic * C . char ) * C . char {
2022-04-12 12:12:14 +00:00
response := mobile . RelaySubscribe ( C . GoString ( topic ) )
return C . CString ( response )
2022-04-03 00:22:42 +00:00
}
2023-03-29 19:20:31 +00:00
// Returns a json response with the list of pubsub topics the node
// is subscribed to in WakuRelay
//
//export waku_relay_topics
func waku_relay_topics ( ) * C . char {
response := mobile . RelayTopics ( )
return C . CString ( response )
}
2022-04-14 15:41:44 +00:00
// Closes the pubsub subscription to a pubsub topic
2023-03-29 19:20:31 +00:00
//
//export waku_relay_unsubscribe
2022-04-03 00:22:42 +00:00
func waku_relay_unsubscribe ( topic * C . char ) * C . char {
2022-04-12 12:12:14 +00:00
response := mobile . RelayUnsubscribe ( C . GoString ( topic ) )
return C . CString ( response )
2022-04-03 00:22:42 +00:00
}