mirror of
https://github.com/bbernhard/signal-cli-rest-api.git
synced 2026-05-22 14:04:28 +00:00
parent
b9ff3062bd
commit
52b8cdf3f0
@ -107,6 +107,17 @@ e.g:
|
|||||||
|
|
||||||
Due to security reason of Signal, the provided QR-Code will change with each request.
|
Due to security reason of Signal, the provided QR-Code will change with each request.
|
||||||
|
|
||||||
|
- React to a message
|
||||||
|
|
||||||
|
`curl -X POST -H "Content-Type: application/json" -d '{"reaction": "<reaction>", "timestamp": <timestamp>, "number": "<number>", "recipient": "<recipient>"}' 'http://127.0.0.1:8080/v1/react'`
|
||||||
|
|
||||||
|
e.g:
|
||||||
|
|
||||||
|
`curl -X POST -H "Content-Type: application/json" -d '{"reaction": "😀", "timestamp": 1616247771636, "number": "+431212131491291", "recipient": "+4354546464654"}' 'http://127.0.0.1:8080/v1/react'`
|
||||||
|
|
||||||
|
The REST API endpoint requires you to specify the author and the timestamp of the message you want to react to.
|
||||||
|
The timestamp of the message you want to react to, can be obtained via the `/receive` endpoint.
|
||||||
|
|
||||||
The following REST API endpoints are **deprecated and no longer maintained!**
|
The following REST API endpoints are **deprecated and no longer maintained!**
|
||||||
|
|
||||||
`/v1/send`
|
`/v1/send`
|
||||||
|
|||||||
@ -76,6 +76,13 @@ type VerifyNumberSettings struct {
|
|||||||
Pin string `json:"pin"`
|
Pin string `json:"pin"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Reaction struct {
|
||||||
|
Number string `json:"number"`
|
||||||
|
Timestamp int64 `json:"timestamp"`
|
||||||
|
Recipient string `json:"recipient"`
|
||||||
|
Reaction string `json:"reaction"`
|
||||||
|
}
|
||||||
|
|
||||||
type SendMessageV1 struct {
|
type SendMessageV1 struct {
|
||||||
Number string `json:"number"`
|
Number string `json:"number"`
|
||||||
Recipients []string `json:"recipients"`
|
Recipients []string `json:"recipients"`
|
||||||
@ -1224,3 +1231,58 @@ func (a *Api) QuitGroup(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
c.Status(http.StatusNoContent)
|
c.Status(http.StatusNoContent)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// @Summary Send a reaction.
|
||||||
|
// @Tags Reactions
|
||||||
|
// @Description React to a message.
|
||||||
|
// @Accept json
|
||||||
|
// @Produce json
|
||||||
|
// @Success 201 {string} OK
|
||||||
|
// @Failure 400 {object} Error
|
||||||
|
// @Param data body Reaction true "Reaction"
|
||||||
|
// @Router /v1/react/{number} [post]
|
||||||
|
func (a *Api) SendReaction(c *gin.Context) {
|
||||||
|
var req Reaction
|
||||||
|
err := c.BindJSON(&req)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(400, Error{Msg: "Couldn't process request - invalid request"})
|
||||||
|
log.Error(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if req.Recipient == "" {
|
||||||
|
c.JSON(400, Error{Msg: "Couldn't process request - recipient missing"})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if req.Timestamp == 0 {
|
||||||
|
c.JSON(400, Error{Msg: "Couldn't process request - timestamp missing"})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if req.Reaction == "" {
|
||||||
|
c.JSON(400, Error{Msg: "Couldn't process request - reaction missing"})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if req.Number == "" {
|
||||||
|
c.JSON(400, Error{Msg: "Couldn't process request - number missing"})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if strings.HasPrefix(req.Recipient, groupPrefix) {
|
||||||
|
c.JSON(500, Error{Msg: "Sending reactions to Signal Groups isn't implemented yet"})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
cmd := []string{"--config", a.signalCliConfig, "-u", req.Number, "sendReaction", req.Recipient, "-a", req.Recipient, "-t",
|
||||||
|
strconv.FormatInt(req.Timestamp, 10), "-e", req.Reaction}
|
||||||
|
|
||||||
|
_, err = runSignalCli(true, cmd, "")
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(400, Error{Msg: err.Error()})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
c.Status(http.StatusNoContent)
|
||||||
|
}
|
||||||
|
|||||||
@ -685,6 +685,46 @@ var doc = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/v1/react/{number}": {
|
||||||
|
"post": {
|
||||||
|
"description": "React to a message.",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"Reactions"
|
||||||
|
],
|
||||||
|
"summary": "Send a reaction.",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"description": "Reaction",
|
||||||
|
"name": "data",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/api.Reaction"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"201": {
|
||||||
|
"description": "Created",
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"400": {
|
||||||
|
"description": "Bad Request",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/api.Error"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/v1/receive/{number}": {
|
"/v1/receive/{number}": {
|
||||||
"get": {
|
"get": {
|
||||||
"description": "Receives Signal Messages from the Signal Network.",
|
"description": "Receives Signal Messages from the Signal Network.",
|
||||||
@ -1014,6 +1054,23 @@ var doc = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"api.Reaction": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"number": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"reaction": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"recipient": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"timestamp": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"api.RegisterNumberRequest": {
|
"api.RegisterNumberRequest": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -1127,6 +1184,10 @@ var doc = `{
|
|||||||
{
|
{
|
||||||
"description": "List and Trust Identities.",
|
"description": "List and Trust Identities.",
|
||||||
"name": "Identities"
|
"name": "Identities"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "React to messages.",
|
||||||
|
"name": "Reactions"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}`
|
}`
|
||||||
|
|||||||
@ -670,6 +670,46 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/v1/react/{number}": {
|
||||||
|
"post": {
|
||||||
|
"description": "React to a message.",
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
"Reactions"
|
||||||
|
],
|
||||||
|
"summary": "Send a reaction.",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"description": "Reaction",
|
||||||
|
"name": "data",
|
||||||
|
"in": "body",
|
||||||
|
"required": true,
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/api.Reaction"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"201": {
|
||||||
|
"description": "Created",
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"400": {
|
||||||
|
"description": "Bad Request",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/api.Error"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/v1/receive/{number}": {
|
"/v1/receive/{number}": {
|
||||||
"get": {
|
"get": {
|
||||||
"description": "Receives Signal Messages from the Signal Network.",
|
"description": "Receives Signal Messages from the Signal Network.",
|
||||||
@ -999,6 +1039,23 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"api.Reaction": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"number": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"reaction": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"recipient": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"timestamp": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"api.RegisterNumberRequest": {
|
"api.RegisterNumberRequest": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -1112,6 +1169,10 @@
|
|||||||
{
|
{
|
||||||
"description": "List and Trust Identities.",
|
"description": "List and Trust Identities.",
|
||||||
"name": "Identities"
|
"name": "Identities"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"description": "React to messages.",
|
||||||
|
"name": "Reactions"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -68,6 +68,17 @@ definitions:
|
|||||||
Level:
|
Level:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
api.Reaction:
|
||||||
|
properties:
|
||||||
|
number:
|
||||||
|
type: string
|
||||||
|
reaction:
|
||||||
|
type: string
|
||||||
|
recipient:
|
||||||
|
type: string
|
||||||
|
timestamp:
|
||||||
|
type: integer
|
||||||
|
type: object
|
||||||
api.RegisterNumberRequest:
|
api.RegisterNumberRequest:
|
||||||
properties:
|
properties:
|
||||||
captcha:
|
captcha:
|
||||||
@ -567,6 +578,32 @@ paths:
|
|||||||
summary: Link device and generate QR code.
|
summary: Link device and generate QR code.
|
||||||
tags:
|
tags:
|
||||||
- Devices
|
- Devices
|
||||||
|
/v1/react/{number}:
|
||||||
|
post:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
description: React to a message.
|
||||||
|
parameters:
|
||||||
|
- description: Reaction
|
||||||
|
in: body
|
||||||
|
name: data
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/api.Reaction'
|
||||||
|
produces:
|
||||||
|
- application/json
|
||||||
|
responses:
|
||||||
|
"201":
|
||||||
|
description: Created
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
"400":
|
||||||
|
description: Bad Request
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/api.Error'
|
||||||
|
summary: Send a reaction.
|
||||||
|
tags:
|
||||||
|
- Reactions
|
||||||
/v1/receive/{number}:
|
/v1/receive/{number}:
|
||||||
get:
|
get:
|
||||||
consumes:
|
consumes:
|
||||||
@ -729,3 +766,5 @@ tags:
|
|||||||
name: Profiles
|
name: Profiles
|
||||||
- description: List and Trust Identities.
|
- description: List and Trust Identities.
|
||||||
name: Identities
|
name: Identities
|
||||||
|
- description: React to messages.
|
||||||
|
name: Reactions
|
||||||
|
|||||||
@ -41,6 +41,9 @@ import (
|
|||||||
// @tag.name Identities
|
// @tag.name Identities
|
||||||
// @tag.description List and Trust Identities.
|
// @tag.description List and Trust Identities.
|
||||||
|
|
||||||
|
// @tag.name Reactions
|
||||||
|
// @tag.description React to messages.
|
||||||
|
|
||||||
// @host 127.0.0.1:8080
|
// @host 127.0.0.1:8080
|
||||||
// @BasePath /
|
// @BasePath /
|
||||||
func main() {
|
func main() {
|
||||||
@ -136,6 +139,11 @@ func main() {
|
|||||||
identities.GET(":number", api.ListIdentities)
|
identities.GET(":number", api.ListIdentities)
|
||||||
identities.PUT(":number/trust/:numbertotrust", api.TrustIdentity)
|
identities.PUT(":number/trust/:numbertotrust", api.TrustIdentity)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
react := v1.Group("react")
|
||||||
|
{
|
||||||
|
react.POST("", api.SendReaction)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
v2 := router.Group("/v2")
|
v2 := router.Group("/v2")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user