1568
1568
information program will continue to run. This is
1569
1569
useful for having version number in the log files.
1570
1570
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
1572
1572
by submitting a Pull Request.
1573
1573
```
1574
1574
1720
1720
HAVE_OPENID = False
1721
1721
1722
1722
# version number
1723
- VERSION = "2022-10-04 "
1724
- VERSIONNR = "3.5.3 "
1723
+ VERSION = "2022-10-05 "
1724
+ VERSIONNR = "3.5.4 "
1725
1725
# matrix-commander; for backwards compitability replace _ with -
1726
1726
PROG_WITHOUT_EXT = os .path .splitext (os .path .basename (__file__ ))[0 ].replace (
1727
1727
"_" , "-"
@@ -2131,7 +2131,17 @@ async def message_callback(self, room: MatrixRoom, event): # noqa: C901
2131
2131
)
2132
2132
gs .log .debug (complete_msg )
2133
2133
# 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
2135
2145
if gs .pa .os_notify :
2136
2146
avatar_url = await get_avatar_url (self .client , event .sender )
2137
2147
notify (
@@ -4444,7 +4454,11 @@ async def listen_tail( # noqa: C901
4444
4454
room_id , start = resp_s .next_batch , limit = limit
4445
4455
)
4446
4456
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
4448
4462
continue # skip this room
4449
4463
gs .log .debug (f"room_messages response = { type (resp )} :: { resp } ." )
4450
4464
gs .log .debug (f"room_messages room_id = { resp .room_id } ." )
@@ -5112,7 +5126,6 @@ async def action_joined_members(
5112
5126
"Room list has been successfully overwritten with '*'"
5113
5127
)
5114
5128
rooms = resp .rooms # overwrite args with full list
5115
- rlist = [] # list of raw objects
5116
5129
for room in rooms :
5117
5130
room = room .replace (r"\!" , "!" ) # remove possible escape
5118
5131
resp = await client .joined_members (room )
@@ -5130,7 +5143,7 @@ async def action_joined_members(
5130
5143
dic = resp .__dict__
5131
5144
if gs .pa .output == OUTPUT_RAW :
5132
5145
dic .pop ("transport_response" )
5133
- rlist . append (dic )
5146
+ print ( json . dumps (dic , default = obj_to_dict ) )
5134
5147
else : # default, gs.output == OUTPUT_HUMAN:
5135
5148
print (resp .room_id )
5136
5149
print (
@@ -5147,9 +5160,6 @@ async def action_joined_members(
5147
5160
),
5148
5161
sep = "\n " ,
5149
5162
)
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 ))
5153
5163
5154
5164
5155
5165
async def action_mxc_to_http (client : AsyncClient , credentials : dict ) -> None :
0 commit comments