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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 662e4bdcc4df337d7382a5b1c13dc3ac7f9f89db0ea69d5b97c778f20e0d841c
4
- data.tar.gz: c9fba2eb82c77f0e35ff434864b4a8443edd41662697f4de46f1c10dd412d059
3
+ metadata.gz: f6abe984f48fda66308c887485726f5ea72e703750c328effa1a5e90d2b89134
4
+ data.tar.gz: e88620b62cf4258c52af6eac68b94d9f5991164848a0f6aa52e1e079a500f4e1
5
5
  SHA512:
6
- metadata.gz: c2f3f4895711d3e1e26b1b1cb843aee645fac8b52d4b6f57621f0ac1ad6966363a9130eea9b48af896d2640547792e9577ae25e47a096d48bbf293d6b634c00f
7
- data.tar.gz: f5a533224f6058317f47fef4c65874320823dd55517282c84ce30d31d438d365f00e968a39bf688c009a58be68b47fe130e1c76bbba2def81cf11cb46b15b739
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
- execute client, chat_msg, args
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
- # Verify if this is a registered command
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
- if first_word.start_with?(@prefix)
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"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SimpleXChat
4
- VERSION = "0.7.0"
4
+ VERSION = "0.7.1"
5
5
  end
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.0
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-12 00:00:00.000000000 Z
10
+ date: 2025-03-13 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: websocket