Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mtxclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Nheko Reborn
mtxclient
Commits
165c9332
Verified
Commit
165c9332
authored
3 years ago
by
Nicolas Werner
Browse files
Options
Downloads
Patches
Plain Diff
Add support for setting and resolving aliases
parent
d047c366
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#2946
passed
3 years ago
Stage: build
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/mtxclient/http/client.hpp
+7
-0
7 additions, 0 deletions
include/mtxclient/http/client.hpp
lib/http/client.cpp
+25
-0
25 additions, 0 deletions
lib/http/client.cpp
with
32 additions
and
0 deletions
include/mtxclient/http/client.hpp
+
7
−
0
View file @
165c9332
...
...
@@ -592,6 +592,13 @@ public:
const
std
::
map
<
mtx
::
identifiers
::
User
,
std
::
map
<
std
::
string
,
EventContent
>>
&
messages
,
ErrCallback
callback
);
//! Resolve the specified roomalias to a roomid.
void
resolve_room_alias
(
const
std
::
string
&
alias
,
Callback
<
mtx
::
responses
::
RoomId
>
cb
);
//! Add an alias to a room.
void
add_room_alias
(
const
std
::
string
&
alias
,
const
std
::
string
&
roomid
,
ErrCallback
cb
);
//! Delete an alias from a room.
void
delete_room_alias
(
const
std
::
string
&
alias
,
ErrCallback
cb
);
//! Gets the visibility of a given room on the server's public room directory.
void
get_room_visibility
(
const
std
::
string
&
room_id
,
Callback
<
mtx
::
responses
::
PublicRoomVisibility
>
cb
);
...
...
This diff is collapsed.
Click to expand it.
lib/http/client.cpp
+
25
−
0
View file @
165c9332
...
...
@@ -1103,6 +1103,31 @@ Client::send_to_device(const std::string &event_type,
put
<
nlohmann
::
json
>
(
api_path
,
body
,
std
::
move
(
callback
));
}
void
Client
::
resolve_room_alias
(
const
std
::
string
&
alias
,
Callback
<
mtx
::
responses
::
RoomId
>
cb
)
{
const
auto
api_path
=
"/client/r0/directory/room/"
+
mtx
::
client
::
utils
::
url_encode
(
alias
);
get
<
mtx
::
responses
::
RoomId
>
(
api_path
,
[
cb
=
std
::
move
(
cb
)](
const
mtx
::
responses
::
RoomId
&
res
,
HeaderFields
,
RequestErr
err
)
{
cb
(
res
,
err
);
});
}
void
Client
::
add_room_alias
(
const
std
::
string
&
alias
,
const
std
::
string
&
roomid
,
ErrCallback
cb
)
{
const
auto
api_path
=
"/client/r0/directory/room/"
+
mtx
::
client
::
utils
::
url_encode
(
alias
);
auto
body
=
nlohmann
::
json
::
object
();
body
[
"room_id"
]
=
roomid
;
put
<
nlohmann
::
json
>
(
api_path
,
body
,
std
::
move
(
cb
));
}
void
Client
::
delete_room_alias
(
const
std
::
string
&
alias
,
ErrCallback
cb
)
{
delete_
(
"/client/r0/directory/room/"
+
mtx
::
client
::
utils
::
url_encode
(
alias
),
std
::
move
(
cb
));
}
void
Client
::
get_room_visibility
(
const
std
::
string
&
room_id
,
Callback
<
mtx
::
responses
::
PublicRoomVisibility
>
cb
)
...
...
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