circuit-api 0.0.11 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/circuit_api.rb +1 -0
- data/lib/circuit_api/client.rb +4 -0
- data/lib/circuit_api/resources/conversation.rb +5 -0
- data/lib/circuit_api/resources/message_item.rb +101 -0
- data/lib/circuit_api/resources/user.rb +6 -0
- data/lib/circuit_api/resources/webhook.rb +6 -0
- data/lib/circuit_api/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b6d0119111f8102ce77f7f647ce2e2cae2e99cd35b9ceac6caddf932a18677f
|
4
|
+
data.tar.gz: eba2f93b43db5d385b82e7d977363d5e9b56f7d996cea75ab3c9c51bc6c88d56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f86818766f5477878dd2a66426dec666be98f285b121783ceea1801d0caa3f9f25a08dea6b18831c6f8f6e1bc618ee4c23bbbc00bc7ab9139380a6b6edb800c
|
7
|
+
data.tar.gz: 35fbe9b9f535319b520d7ed5e1946529ce40d205f9512308bff54d2b1a0a807264afdd588257e5379a9041195c581721394199c740d41f1ee5409a763b9974f4
|
data/lib/circuit_api.rb
CHANGED
@@ -14,6 +14,7 @@ require 'circuit_api/utils/object'
|
|
14
14
|
require 'circuit_api/resources/base'
|
15
15
|
require 'circuit_api/resources/conversation'
|
16
16
|
require 'circuit_api/resources/label'
|
17
|
+
require 'circuit_api/resources/message_item'
|
17
18
|
require 'circuit_api/resources/message'
|
18
19
|
require 'circuit_api/resources/presence'
|
19
20
|
require 'circuit_api/resources/rtc_session'
|
data/lib/circuit_api/client.rb
CHANGED
@@ -0,0 +1,101 @@
|
|
1
|
+
module CircuitApi
|
2
|
+
module Resources
|
3
|
+
class MessageItem < Base
|
4
|
+
def api_resource
|
5
|
+
'conversations/:conversation_id/messages/:id'
|
6
|
+
end
|
7
|
+
|
8
|
+
def find(id)
|
9
|
+
path = api_resource
|
10
|
+
.sub(':conversation_id/', '')
|
11
|
+
.sub(':id', id)
|
12
|
+
|
13
|
+
result = connection(path).get
|
14
|
+
response_to_object(result)
|
15
|
+
end
|
16
|
+
|
17
|
+
def all(conversation_id, params = {})
|
18
|
+
path = api_resource
|
19
|
+
.sub(':conversation_id', conversation_id)
|
20
|
+
.sub('messages/:id', 'items')
|
21
|
+
|
22
|
+
result = connection(path, params).get
|
23
|
+
response_to_object(result)
|
24
|
+
end
|
25
|
+
|
26
|
+
def update(conversation_id, id, params)
|
27
|
+
path = api_resource
|
28
|
+
.sub(':conversation_id', conversation_id)
|
29
|
+
.sub(':id', id)
|
30
|
+
|
31
|
+
result = connection(path, params).put
|
32
|
+
response_to_object(result)
|
33
|
+
end
|
34
|
+
|
35
|
+
def delete(conversation_id, id)
|
36
|
+
path = api_resource
|
37
|
+
.sub(':conversation_id', conversation_id)
|
38
|
+
.sub(':id', id)
|
39
|
+
|
40
|
+
result = connection(path).delete
|
41
|
+
response_to_object(result)
|
42
|
+
end
|
43
|
+
|
44
|
+
def pin(conversation_id, id)
|
45
|
+
path = api_resource
|
46
|
+
.sub(':conversation_id', conversation_id)
|
47
|
+
.sub('messages', 'pins')
|
48
|
+
.sub(':id', id)
|
49
|
+
|
50
|
+
result = connection(path).post
|
51
|
+
response_to_object(result)
|
52
|
+
end
|
53
|
+
|
54
|
+
def unpin(conversation_id, id)
|
55
|
+
path = api_resource
|
56
|
+
.sub(':conversation_id', conversation_id)
|
57
|
+
.sub('messages', 'pins')
|
58
|
+
.sub(':id', id)
|
59
|
+
|
60
|
+
result = connection(path).delete
|
61
|
+
response_to_object(result)
|
62
|
+
end
|
63
|
+
|
64
|
+
def flag(conversation_id, id, params)
|
65
|
+
path = api_resource
|
66
|
+
.sub(':conversation_id', conversation_id)
|
67
|
+
.sub(':id', id)
|
68
|
+
|
69
|
+
result = connection("#{path}/flag", params).post
|
70
|
+
response_to_object(result)
|
71
|
+
end
|
72
|
+
|
73
|
+
def unflag(conversation_id, id)
|
74
|
+
path = api_resource
|
75
|
+
.sub(':conversation_id', conversation_id)
|
76
|
+
.sub(':id', id)
|
77
|
+
|
78
|
+
result = connection("#{path}/flag").delete
|
79
|
+
response_to_object(result)
|
80
|
+
end
|
81
|
+
|
82
|
+
def like(conversation_id, id)
|
83
|
+
path = api_resource
|
84
|
+
.sub(':conversation_id', conversation_id)
|
85
|
+
.sub(':id', id)
|
86
|
+
|
87
|
+
result = connection("#{path}/like").post
|
88
|
+
response_to_object(result)
|
89
|
+
end
|
90
|
+
|
91
|
+
def unlike(conversation_id, id)
|
92
|
+
path = api_resource
|
93
|
+
.sub(':conversation_id', conversation_id)
|
94
|
+
.sub(':id', id)
|
95
|
+
|
96
|
+
result = connection("#{path}/like").delete
|
97
|
+
response_to_object(result)
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
@@ -1,6 +1,12 @@
|
|
1
1
|
module CircuitApi
|
2
2
|
module Resources
|
3
3
|
class Webhook < Base
|
4
|
+
CONVERSATION_CREATE = 'CONVERSATION.CREATE'.freeze
|
5
|
+
CONVERSATION_UPDATE = 'CONVERSATION.UPDATE'.freeze
|
6
|
+
CONVERSATION_ADD_ITEM = 'CONVERSATION.ADD_ITEM'.freeze
|
7
|
+
CONVERSATION_UPDATE_ITEM = 'CONVERSATION.UPDATE_ITEM'.freeze
|
8
|
+
USER_SUBMIT_FORM = 'USER.SUBMIT_FORM_DATA'.freeze
|
9
|
+
|
4
10
|
def api_resource
|
5
11
|
'webhooks'
|
6
12
|
end
|
data/lib/circuit_api/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: circuit-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vincent Pochet
|
@@ -93,6 +93,7 @@ files:
|
|
93
93
|
- lib/circuit_api/resources/conversation.rb
|
94
94
|
- lib/circuit_api/resources/label.rb
|
95
95
|
- lib/circuit_api/resources/message.rb
|
96
|
+
- lib/circuit_api/resources/message_item.rb
|
96
97
|
- lib/circuit_api/resources/presence.rb
|
97
98
|
- lib/circuit_api/resources/rtc_session.rb
|
98
99
|
- lib/circuit_api/resources/user.rb
|
@@ -121,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
121
122
|
- !ruby/object:Gem::Version
|
122
123
|
version: '0'
|
123
124
|
requirements: []
|
124
|
-
rubygems_version: 3.
|
125
|
+
rubygems_version: 3.1.4
|
125
126
|
signing_key:
|
126
127
|
specification_version: 4
|
127
128
|
summary: Circuit Rest API client
|