Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nheko
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
nheko
Commits
aae86124
Commit
aae86124
authored
5 years ago
by
Nicolas Werner
Browse files
Options
Downloads
Patches
Plain Diff
use room rules for mentions
parent
96e3a773
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
src/dialogs/RoomSettings.cpp
+31
-21
31 additions, 21 deletions
src/dialogs/RoomSettings.cpp
with
32 additions
and
22 deletions
CMakeLists.txt
+
1
−
1
View file @
aae86124
...
...
@@ -334,7 +334,7 @@ if(USE_BUNDLED_MTXCLIENT)
FetchContent_Declare
(
MatrixClient
GIT_REPOSITORY https://github.com/Nheko-Reborn/mtxclient.git
GIT_TAG
c914f8bd042bf8c2d0ee499c0d89e010e8ba9180
GIT_TAG
ec569028ee7a5945bc5552858b2eac930c9d2871
)
FetchContent_MakeAvailable
(
MatrixClient
)
else
()
...
...
This diff is collapsed.
Click to expand it.
src/dialogs/RoomSettings.cpp
+
31
−
21
View file @
aae86124
...
...
@@ -225,18 +225,27 @@ RoomSettings::RoomSettings(const QString &room_id, QWidget *parent)
[
this
](
const
mtx
::
pushrules
::
PushRule
&
rule
,
mtx
::
http
::
RequestErr
&
err
)
{
if
(
err
)
{
if
(
err
->
status_code
==
boost
::
beast
::
http
::
status
::
not_found
)
emit
notifChanged
(
2
);
// all messages
http
::
client
()
->
get_pushrules
(
"global"
,
"room"
,
room_id_
.
toStdString
(),
[
this
](
const
mtx
::
pushrules
::
PushRule
&
rule
,
mtx
::
http
::
RequestErr
&
err
)
{
if
(
err
)
{
emit
notifChanged
(
2
);
// all messages
return
;
}
if
(
rule
.
enabled
)
emit
notifChanged
(
1
);
// mentions only
});
return
;
}
if
(
rule
.
actions
.
size
()
==
1
&&
std
::
holds_alternative
<
mtx
::
pushrules
::
actions
::
dont_notify
>
(
rule
.
actions
[
0
]))
{
if
(
rule
.
conditions
.
empty
())
emit
notifChanged
(
1
);
// mentions only
else
emit
notifChanged
(
0
);
// muted
}
if
(
rule
.
enabled
)
emit
notifChanged
(
0
);
// muted
else
emit
notifChanged
(
2
);
// all messages
});
connect
(
notifCombo
,
QOverload
<
int
>::
of
(
&
QComboBox
::
activated
),
[
this
](
int
index
)
{
...
...
@@ -264,6 +273,9 @@ RoomSettings::RoomSettings(const QString &room_id, QWidget *parent)
room_id
,
static_cast
<
int
>
(
err
->
status_code
),
err
->
matrix_error
.
error
);
http
::
client
()
->
delete_pushrules
(
"global"
,
"room"
,
room_id
,
[
room_id
](
mtx
::
http
::
RequestErr
&
)
{
});
});
}
else
if
(
index
==
1
)
{
// mentions only
...
...
@@ -271,28 +283,26 @@ RoomSettings::RoomSettings(const QString &room_id, QWidget *parent)
mtx
::
pushrules
::
PushRule
rule
;
rule
.
actions
=
{
mtx
::
pushrules
::
actions
::
dont_notify
{}};
http
::
client
()
->
put_pushrules
(
"global"
,
"override"
,
room_id
,
rule
,
[
room_id
](
mtx
::
http
::
RequestErr
&
err
)
{
"global"
,
"room"
,
room_id
,
rule
,
[
room_id
](
mtx
::
http
::
RequestErr
&
err
)
{
if
(
err
)
nhlog
::
net
()
->
error
(
"failed to set pushrule for room {}: {} {}"
,
room_id
,
static_cast
<
int
>
(
err
->
status_code
),
err
->
matrix_error
.
error
);
http
::
client
()
->
delete_pushrules
(
"global"
,
"override"
,
room_id
,
[
room_id
](
mtx
::
http
::
RequestErr
&
)
{});
});
}
else
{
// all messages
http
::
client
()
->
delete_pushrules
(
"global"
,
"override"
,
room_id
,
[
room_id
](
mtx
::
http
::
RequestErr
&
err
)
{
if
(
err
)
nhlog
::
net
()
->
error
(
"failed to delete pushrule for room {}: {} {}"
,
room_id
,
static_cast
<
int
>
(
err
->
status_code
),
err
->
matrix_error
.
error
);
"global"
,
"override"
,
room_id
,
[
room_id
](
mtx
::
http
::
RequestErr
&
)
{
http
::
client
()
->
delete_pushrules
(
"global"
,
"room"
,
room_id
,
[
room_id
](
mtx
::
http
::
RequestErr
&
)
{
});
});
}
});
...
...
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