Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
maubot-rt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
isgphys
maubot-rt
Commits
63a2281f
Commit
63a2281f
authored
5 years ago
by
Sven Mäder
Browse files
Options
Downloads
Patches
Plain Diff
Rename show -> properties, add subcommand show
parent
78321179
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rtlinks.py
+22
-4
22 additions, 4 deletions
rtlinks.py
with
22 additions
and
4 deletions
rtlinks.py
+
22
−
4
View file @
63a2281f
...
...
@@ -52,7 +52,7 @@ class RTLinksPlugin(Plugin):
markdown
=
"
[rt#{}]({})
"
.
format
(
number
,
link
)
return
markdown
async
def
_
show
(
self
,
number
:
str
)
->
dict
:
async
def
_
properties
(
self
,
number
:
str
)
->
dict
:
await
self
.
http
.
post
(
self
.
api
,
data
=
self
.
post_data
,
headers
=
self
.
headers
)
api_show
=
'
{}ticket/{}/show
'
.
format
(
self
.
api
,
number
)
async
with
self
.
http
.
get
(
api_show
,
headers
=
self
.
headers
)
as
response
:
...
...
@@ -117,13 +117,13 @@ class RTLinksPlugin(Plugin):
async
def
rt
(
self
)
->
None
:
pass
@rt.subcommand
(
"
show
"
,
help
=
"
Show all ticket properties.
"
)
@rt.subcommand
(
"
properties
"
,
help
=
"
Show all ticket properties.
"
)
@command.argument
(
"
number
"
,
"
ticket number
"
,
pass_raw
=
True
)
async
def
show
(
self
,
evt
:
MessageEvent
,
number
:
str
)
->
None
:
async
def
properties
(
self
,
evt
:
MessageEvent
,
number
:
str
)
->
None
:
if
not
await
self
.
can_manage
(
evt
)
or
not
self
.
is_valid_number
(
number
):
return
await
evt
.
mark_read
()
properties_dict
=
await
self
.
_
show
(
number
)
properties_dict
=
await
self
.
_
properties
(
number
)
properties_list
=
[
"
{}: {}
"
.
format
(
k
,
v
)
for
k
,
v
in
properties_dict
.
items
()]
markdown_link
=
await
self
.
get_markdown_link
(
number
)
markdown
=
'
{} properties:
\n
{}
'
.
format
(
markdown_link
,
'
\n
'
.
join
(
properties_list
))
...
...
@@ -227,3 +227,21 @@ class RTLinksPlugin(Plugin):
markdown
=
'
{} history entry {}:
\n
{}
'
.
format
(
markdown_link
,
entry
,
'
\n
'
.
join
(
entry_list
))
await
evt
.
respond
(
markdown
)
@rt.subcommand
(
"
show
"
,
help
=
"
Show all information about the ticket.
"
)
@command.argument
(
"
number
"
,
"
ticket number
"
,
parser
=
str
)
async
def
show
(
self
,
evt
:
MessageEvent
,
number
:
str
)
->
None
:
if
not
await
self
.
can_manage
(
evt
)
or
not
self
.
is_valid_number
(
number
):
return
await
evt
.
mark_read
()
properties_dict
=
await
self
.
_properties
(
number
)
properties_list
=
[
"
{}: {}
"
.
format
(
k
,
v
)
for
k
,
v
in
properties_dict
.
items
()]
markdown_link
=
await
self
.
get_markdown_link
(
number
)
markdown
=
'
{} properties:
\n
{}
\n\n
'
.
format
(
markdown_link
,
'
\n
'
.
join
(
properties_list
))
history_dict
=
await
self
.
_history
(
number
)
for
entry
in
history_dict
.
keys
():
entry_dict
=
await
self
.
_entry
(
number
,
entry
)
entry_list
=
[
"
{}: {}
"
.
format
(
k
,
v
)
for
k
,
v
in
entry_dict
.
items
()]
markdown
+=
'
{} history entry {}:
\n
{}
\n\n
'
.
format
(
markdown_link
,
entry
,
'
\n
'
.
join
(
entry_list
))
await
evt
.
respond
(
markdown
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment