simplex-chat 0.7.0 → 0.7.1
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/simplex-chat/cmd-runner.rb +12 -5
- data/lib/simplex-chat/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f6abe984f48fda66308c887485726f5ea72e703750c328effa1a5e90d2b89134
|
4
|
+
data.tar.gz: e88620b62cf4258c52af6eac68b94d9f5991164848a0f6aa52e1e079a500f4e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4fe774622151042e7774640645213ba3f709e8b42719d0344f7c2176ea12c57a803eb7c30fe5051e8c8c56e361cb362ad691247766a5fcc570a9889bc03b8a25
|
7
|
+
data.tar.gz: 8ecef57f4c0b4d39a0e8bf75d821f67e08c06850f97fbae1db7a51bd165bf1cd38b75ecf4b5fc5985375d0455c9ca1fd7e36b550229a12cebf5b3b5c6e263ab6
|
@@ -20,7 +20,11 @@ module SimpleXChat
|
|
20
20
|
|
21
21
|
def validate_and_execute(client, chat_msg, args)
|
22
22
|
return if not validate(client, chat_msg, args)
|
23
|
-
|
23
|
+
begin
|
24
|
+
execute client, chat_msg, args
|
25
|
+
rescue
|
26
|
+
client.api_send_text_message chat_msg[:chat_type], chat_msg[:sender], "@#{chat_msg[:contact]}: Failed to execute command"
|
27
|
+
end
|
24
28
|
end
|
25
29
|
|
26
30
|
private
|
@@ -138,15 +142,18 @@ module SimpleXChat
|
|
138
142
|
issuer_role = chat_msg[:contact_role]
|
139
143
|
sender = chat_msg[:sender]
|
140
144
|
|
141
|
-
#
|
145
|
+
# Skip automated group messages
|
146
|
+
return if issuer == nil
|
147
|
+
|
148
|
+
# Verify if message is a command
|
142
149
|
message_items = msg_text.split(" ")
|
143
150
|
first_word = message_items[0]
|
151
|
+
return if not first_word.start_with?(@prefix)
|
144
152
|
|
145
153
|
# React to all messages we will process
|
146
|
-
|
147
|
-
@client.api_reaction chat_msg[:chat_type], chat_msg[:sender_id], chat_msg[:msg_item_id], emoji: '🚀'
|
148
|
-
end
|
154
|
+
@client.api_reaction chat_msg[:chat_type], chat_msg[:sender_id], chat_msg[:msg_item_id], emoji: '🚀'
|
149
155
|
|
156
|
+
# Verify if this is a registered command
|
150
157
|
command = @commands[first_word]
|
151
158
|
if command == nil
|
152
159
|
@client.api_send_text_message chat_msg[:chat_type], chat_msg[:sender], "@#{issuer}: Unknown command"
|
data/lib/simplex-chat/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simplex-chat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- rdbo
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-13 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: websocket
|