Heyo Folks, for those who working on interactive bots task, just now we've merged an commit about interactive bots to master: 947fdf . That commit adds client
argument to triage_message()
of every bot codes. So please rebase your bot code to the latest build of master and add client
argument to your bot's triage_message()
.
Also, this allows us to access name and email address of the bot account, by accessing:
client.full_name
to get the name of the bot account.client.email
to get the email of the bot account.cool!
Thanks for the heads-up, @Rafid Aslam!
Another enhancement forrun.py
may be to make it fail fast somehow when your configuration is broken. This may require modifications to the API.
@Steve Howell so that enhancement is not implemented yet ?
@Steve Howell Remember what we talked in #GCI general (Importing 'zerver' stream)?
It was about adding the client's do_api_query()
method to the RestrictedClient
, in order to be able to do queries to the API. In my case I needed it for uploading images, but I guess it could be pretty useful for other purposes.
If you still think it's a good idea, I could create a PR too
How about all the current bots in /contrib_bots
, don't they need to be changed also?
Looks like Rafid already got rid of that, too. All of them have been updated (look at the commit he linked to) :)
I just created a PR in order to update the documentation on developing bots to contain the new feature.
Also, I noticed that the new client
object in triage_message
contains the function client.send_message
as well. This is surely not desirable, as we do not want to send any messages in triage_message
@Robert Hönig looked at your PR. Looks good.
I also think that client.send_message
is not needed, since the message
already has it.
@Joshua Pan I just had a glance at the code. In order to remove client.send_message from the object, I think that it would be necessary to create a new object. Should I do that in another PR?
Yea, definitely. Keep the two commits in two different PRs.
okay :) the checks for the first PR have passed, can you merge it?
@Robert Hönig that's https://github.com/zulip/zulip/pull/2929/files?
yep :)
thanks for merging @Tim Abbott!
Ideally that parameter would be called something more like client_info
.
Last updated: Jul 19 2022 at 08:22 UTC