-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nixos-infra jitsi prep #297809
Closed
Closed
nixos-infra jitsi prep #297809
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
1276322
nixos/prosody: add extraModules for capabilities
Janik-Haag 812c2fc
nixos/jitsi-meet: add hack to update muc options
Janik-Haag 417ba42
jitsi-prosody-plugins: init at 20240318
Janik-Haag 7651bdb
nixosTests.jitsi-meet: test updateMucs
Janik-Haag File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -189,6 +189,19 @@ in | |
}; | ||
|
||
secureDomain.enable = mkEnableOption (lib.mdDoc "Authenticated room creation"); | ||
|
||
updateMucs = mkOption { | ||
type = with types; attrsOf anything; | ||
default = { }; | ||
description = "This is a very hacky work around setting and only added because prosody muc is a list."; | ||
example = { | ||
"conference.jitsi.example.com".extraModules = [ | ||
"lobby_autostart" | ||
"muc_mam" | ||
"vcard_muc" | ||
]; | ||
}; | ||
}; | ||
}; | ||
|
||
config = mkIf cfg.enable { | ||
|
@@ -205,7 +218,16 @@ in | |
tls = mkDefault true; | ||
websocket = mkDefault true; | ||
}; | ||
muc = [ | ||
# the piece of code bellow looks at the domain name of the attrs in the list and updates the attrs if the domain name matches. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. typo: below |
||
# this is done to allow adding/overriding settings in a convenient way | ||
muc = lib.flatten (builtins.map (muc: | ||
let | ||
result = lib.mapAttrsToList ( | ||
n: v: if muc.domain == n then (lib.recursiveUpdate muc v) else null | ||
) cfg.updateMucs; | ||
in | ||
if result == [ null ] then muc else result | ||
) [ | ||
{ | ||
domain = "conference.${cfg.hostName}"; | ||
name = "Jitsi Meet MUC"; | ||
|
@@ -249,7 +271,7 @@ in | |
storage = "memory" | ||
''; | ||
} | ||
]; | ||
]); | ||
extraModules = [ | ||
"pubsub" | ||
"smacks" | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This descriptions tells me nothing at all about how this option is expected to be used or what it does. My understanding is that this is a way to inject extra Prosody settings for a MUC, which is difficult to do otherwise due to the combination of 1. the Prosody module not using an attrset for its instances; 2. the Jitsi module being in charge of configuring Prosody itself?
updateMucs
option uses as its API? It should even be doable to keep compatibility with the old list format by auto-transforming the list into an attrset using v.domain.