Skip to content

Commit 65e4f61

Browse files
author
8go
committed
new action workflow for Docker
- new action workflow for Docker - changed `--output raw` to print 1 line PER data-item, i.e. N lines with 1 JSON object each (instead of 1 line in TOTAL with a JSON array on N JSON objects) - added code to cover --output for actions --listen and --tail - see Issue #92
1 parent 2fc05b9 commit 65e4f61

8 files changed

+23
-13
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1561,7 +1561,7 @@ options:
15611561
information program will continue to run. This is
15621562
useful for having version number in the log files.
15631563
1564-
You are running version 3.5.3 2022-10-04. Enjoy, star on Github and contribute
1564+
You are running version 3.5.4 2022-10-05. Enjoy, star on Github and contribute
15651565
by submitting a Pull Request.
15661566
```
15671567

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.5.3
1+
3.5.4

dist/matrix-commander-3.5.3.tar.gz

-174 KB
Binary file not shown.

dist/matrix-commander-3.5.4.tar.gz

174 KB
Binary file not shown.
-124 KB
Binary file not shown.
124 KB
Binary file not shown.

matrix_commander/matrix_commander.py

+20-10
Original file line numberDiff line numberDiff line change
@@ -1568,7 +1568,7 @@
15681568
information program will continue to run. This is
15691569
useful for having version number in the log files.
15701570
1571-
You are running version 3.5.3 2022-10-04. Enjoy, star on Github and contribute
1571+
You are running version 3.5.4 2022-10-05. Enjoy, star on Github and contribute
15721572
by submitting a Pull Request.
15731573
```
15741574
@@ -1720,8 +1720,8 @@
17201720
HAVE_OPENID = False
17211721

17221722
# version number
1723-
VERSION = "2022-10-04"
1724-
VERSIONNR = "3.5.3"
1723+
VERSION = "2022-10-05"
1724+
VERSIONNR = "3.5.4"
17251725
# matrix-commander; for backwards compitability replace _ with -
17261726
PROG_WITHOUT_EXT = os.path.splitext(os.path.basename(__file__))[0].replace(
17271727
"_", "-"
@@ -2131,7 +2131,17 @@ async def message_callback(self, room: MatrixRoom, event): # noqa: C901
21312131
)
21322132
gs.log.debug(complete_msg)
21332133
# todo output format
2134-
print(complete_msg, flush=True) # print the received message
2134+
if (
2135+
gs.pa.output == OUTPUT_RAW_DETAILS
2136+
or gs.pa.output == OUTPUT_RAW
2137+
):
2138+
if gs.pa.output == OUTPUT_RAW:
2139+
dic = event.source
2140+
else:
2141+
dic = event
2142+
print(json.dumps(dic, default=obj_to_dict))
2143+
else: # default, gs.output == OUTPUT_HUMAN:
2144+
print(complete_msg, flush=True) # print the received message
21352145
if gs.pa.os_notify:
21362146
avatar_url = await get_avatar_url(self.client, event.sender)
21372147
notify(
@@ -4444,7 +4454,11 @@ async def listen_tail( # noqa: C901
44444454
room_id, start=resp_s.next_batch, limit=limit
44454455
)
44464456
if isinstance(resp, RoomMessagesError):
4447-
gs.log.debug(f"room_messages failed with resp = {resp}")
4457+
gs.log.warning(
4458+
f"room_messages failed with resp = {resp}. "
4459+
"Processing continues."
4460+
)
4461+
gs.warn_count += 1
44484462
continue # skip this room
44494463
gs.log.debug(f"room_messages response = {type(resp)} :: {resp}.")
44504464
gs.log.debug(f"room_messages room_id = {resp.room_id}.")
@@ -5112,7 +5126,6 @@ async def action_joined_members(
51125126
"Room list has been successfully overwritten with '*'"
51135127
)
51145128
rooms = resp.rooms # overwrite args with full list
5115-
rlist = [] # list of raw objects
51165129
for room in rooms:
51175130
room = room.replace(r"\!", "!") # remove possible escape
51185131
resp = await client.joined_members(room)
@@ -5130,7 +5143,7 @@ async def action_joined_members(
51305143
dic = resp.__dict__
51315144
if gs.pa.output == OUTPUT_RAW:
51325145
dic.pop("transport_response")
5133-
rlist.append(dic)
5146+
print(json.dumps(dic, default=obj_to_dict))
51345147
else: # default, gs.output == OUTPUT_HUMAN:
51355148
print(resp.room_id)
51365149
print(
@@ -5147,9 +5160,6 @@ async def action_joined_members(
51475160
),
51485161
sep="\n",
51495162
)
5150-
# todo output format ==> done
5151-
if gs.pa.output == OUTPUT_RAW_DETAILS or gs.pa.output == OUTPUT_RAW:
5152-
print(json.dumps(rlist, default=obj_to_dict))
51535163

51545164

51555165
async def action_mxc_to_http(client: AsyncClient, credentials: dict) -> None:

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
33
# https://setuptools.pypa.io/en/latest/userguide/
44
name = matrix-commander
5-
version = 3.5.3
5+
version = 3.5.4
66
author = 8go
77
description = A simple command-line Matrix client
88
long_description = file: PyPi-Instructions.md, README.md

0 commit comments

Comments
 (0)