mirror of https://github.com/zulip/zulip.git
events: Change format of authentication_methods realm_update_dict event.
Makes the event in line with state_data.realm_authentication_methods.
This commit is contained in:
parent
da9e4e6e54
commit
1ede8da46c
|
@ -50,6 +50,7 @@ import * as scheduled_messages_ui from "./scheduled_messages_ui";
|
||||||
import * as scroll_bar from "./scroll_bar";
|
import * as scroll_bar from "./scroll_bar";
|
||||||
import * as settings_account from "./settings_account";
|
import * as settings_account from "./settings_account";
|
||||||
import * as settings_bots from "./settings_bots";
|
import * as settings_bots from "./settings_bots";
|
||||||
|
import * as settings_components from "./settings_components";
|
||||||
import * as settings_config from "./settings_config";
|
import * as settings_config from "./settings_config";
|
||||||
import * as settings_emoji from "./settings_emoji";
|
import * as settings_emoji from "./settings_emoji";
|
||||||
import * as settings_exports from "./settings_exports";
|
import * as settings_exports from "./settings_exports";
|
||||||
|
@ -290,20 +291,7 @@ export function dispatch_normal_event(event) {
|
||||||
switch (event.property) {
|
switch (event.property) {
|
||||||
case "default":
|
case "default":
|
||||||
for (const [key, value] of Object.entries(event.data)) {
|
for (const [key, value] of Object.entries(event.data)) {
|
||||||
if (key === "authentication_methods") {
|
realm["realm_" + key] = value;
|
||||||
for (const [auth_method, enabled] of Object.entries(
|
|
||||||
event.data.authentication_methods,
|
|
||||||
)) {
|
|
||||||
realm.realm_authentication_methods[auth_method].enabled =
|
|
||||||
enabled;
|
|
||||||
}
|
|
||||||
settings_org.populate_auth_methods(
|
|
||||||
event.data.authentication_methods,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
realm["realm_" + key] = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Object.hasOwn(realm_settings, key)) {
|
if (Object.hasOwn(realm_settings, key)) {
|
||||||
settings_org.sync_realm_settings(key);
|
settings_org.sync_realm_settings(key);
|
||||||
}
|
}
|
||||||
|
@ -318,6 +306,11 @@ export function dispatch_normal_event(event) {
|
||||||
message_live_update.rerender_messages_view();
|
message_live_update.rerender_messages_view();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (event.data.authentication_methods !== undefined) {
|
||||||
|
settings_org.populate_auth_methods(
|
||||||
|
settings_components.realm_authentication_methods_to_boolean_dict(),
|
||||||
|
);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case "icon":
|
case "icon":
|
||||||
realm.realm_icon_url = event.data.icon_url;
|
realm.realm_icon_url = event.data.icon_url;
|
||||||
|
|
|
@ -389,7 +389,7 @@ exports.fixtures = {
|
||||||
edit_topic_policy: 4,
|
edit_topic_policy: 4,
|
||||||
create_multiuse_invite_group: 3,
|
create_multiuse_invite_group: 3,
|
||||||
authentication_methods: {
|
authentication_methods: {
|
||||||
Google: true,
|
Google: {enabled: true, available: true},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -326,11 +326,16 @@ def do_set_realm_authentication_methods(
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
event_data = dict(
|
||||||
|
authentication_methods=get_realm_authentication_methods_for_page_params_api(
|
||||||
|
realm, updated_value
|
||||||
|
)
|
||||||
|
)
|
||||||
event = dict(
|
event = dict(
|
||||||
type="realm",
|
type="realm",
|
||||||
op="update_dict",
|
op="update_dict",
|
||||||
property="default",
|
property="default",
|
||||||
data=dict(authentication_methods=updated_value),
|
data=event_data,
|
||||||
)
|
)
|
||||||
send_event(realm, event, active_user_ids(realm.id))
|
send_event(realm, event, active_user_ids(realm.id))
|
||||||
|
|
||||||
|
|
|
@ -965,13 +965,23 @@ def check_realm_default_update(
|
||||||
assert isinstance(event["value"], prop_type)
|
assert isinstance(event["value"], prop_type)
|
||||||
|
|
||||||
|
|
||||||
|
authentication_method_dict = DictType(
|
||||||
|
required_keys=[
|
||||||
|
("enabled", bool),
|
||||||
|
("available", bool),
|
||||||
|
],
|
||||||
|
optional_keys=[
|
||||||
|
("unavailable_reason", str),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
authentication_dict = DictType(
|
authentication_dict = DictType(
|
||||||
required_keys=[
|
required_keys=[
|
||||||
("Google", bool),
|
("Google", authentication_method_dict),
|
||||||
("Dev", bool),
|
("Dev", authentication_method_dict),
|
||||||
("LDAP", bool),
|
("LDAP", authentication_method_dict),
|
||||||
("GitHub", bool),
|
("GitHub", authentication_method_dict),
|
||||||
("Email", bool),
|
("Email", authentication_method_dict),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1198,19 +1198,15 @@ def apply_event(
|
||||||
)
|
)
|
||||||
elif event["op"] == "update_dict":
|
elif event["op"] == "update_dict":
|
||||||
for key, value in event["data"].items():
|
for key, value in event["data"].items():
|
||||||
|
state["realm_" + key] = value
|
||||||
|
# It's a bit messy, but this is where we need to
|
||||||
|
# update the state for whether password authentication
|
||||||
|
# is enabled on this server.
|
||||||
if key == "authentication_methods":
|
if key == "authentication_methods":
|
||||||
state_realm_authentication_methods = state["realm_authentication_methods"]
|
state["realm_password_auth_enabled"] = (
|
||||||
for auth_method, enabled in value.items():
|
value["Email"]["enabled"] or value["LDAP"]["enabled"]
|
||||||
state_realm_authentication_methods[auth_method]["enabled"] = enabled
|
)
|
||||||
|
state["realm_email_auth_enabled"] = value["Email"]["enabled"]
|
||||||
# It's a bit messy, but this is where we need to
|
|
||||||
# update the state for whether password authentication
|
|
||||||
# is enabled on this server.
|
|
||||||
state["realm_password_auth_enabled"] = value["Email"] or value["LDAP"]
|
|
||||||
state["realm_email_auth_enabled"] = value["Email"]
|
|
||||||
|
|
||||||
else:
|
|
||||||
state["realm_" + key] = value
|
|
||||||
elif event["op"] == "deactivated":
|
elif event["op"] == "deactivated":
|
||||||
# The realm has just been deactivated. If our request had
|
# The realm has just been deactivated. If our request had
|
||||||
# arrived a moment later, we'd have rendered the
|
# arrived a moment later, we'd have rendered the
|
||||||
|
|
|
@ -4172,13 +4172,11 @@ paths:
|
||||||
authentication_methods:
|
authentication_methods:
|
||||||
type: object
|
type: object
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
description: |
|
$ref: "#/components/schemas/RealmAuthenticationMethod"
|
||||||
Boolean describing whether the authentication method (i.e. its key)
|
|
||||||
is enabled in this organization.
|
|
||||||
type: boolean
|
|
||||||
description: |
|
description: |
|
||||||
Dictionary of authentication method keys with boolean values that
|
Dictionary of authentication method keys mapped to dictionaries that
|
||||||
describe whether the named authentication method is enabled for the
|
describe the properties of the named authentication method for the
|
||||||
|
organization - its enabled status and availability for use by the
|
||||||
organization.
|
organization.
|
||||||
|
|
||||||
Clients should use this to implement server-settings UI to change which
|
Clients should use this to implement server-settings UI to change which
|
||||||
|
@ -14529,29 +14527,7 @@ paths:
|
||||||
realm_authentication_methods:
|
realm_authentication_methods:
|
||||||
type: object
|
type: object
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: object
|
$ref: "#/components/schemas/RealmAuthenticationMethod"
|
||||||
properties:
|
|
||||||
enabled:
|
|
||||||
type: boolean
|
|
||||||
description: |
|
|
||||||
Boolean describing whether the authentication method (i.e. its key)
|
|
||||||
is enabled in this organization.
|
|
||||||
available:
|
|
||||||
type: boolean
|
|
||||||
description: |
|
|
||||||
Boolean describing whether the authentication method is available for use.
|
|
||||||
If false, the organization is not eligible to enable the authentication
|
|
||||||
method.
|
|
||||||
unavailable_reason:
|
|
||||||
type: string
|
|
||||||
description: |
|
|
||||||
Reason why the authentication method is unavailable. This field is optional
|
|
||||||
and is only present when 'available' is false.
|
|
||||||
additionalProperties: false
|
|
||||||
description: |
|
|
||||||
Dictionary describing the properties of the named authentication method for the
|
|
||||||
organization - its enabled status and availability for use by the
|
|
||||||
organization.
|
|
||||||
description: |
|
description: |
|
||||||
Present if `realm` is present in `fetch_event_types`.
|
Present if `realm` is present in `fetch_event_types`.
|
||||||
|
|
||||||
|
@ -18992,6 +18968,30 @@ components:
|
||||||
only when some specific event occurs.
|
only when some specific event occurs.
|
||||||
|
|
||||||
**Changes**: New in Zulip 8.0 (feature level 230).
|
**Changes**: New in Zulip 8.0 (feature level 230).
|
||||||
|
RealmAuthenticationMethod:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
enabled:
|
||||||
|
type: boolean
|
||||||
|
description: |
|
||||||
|
Boolean describing whether the authentication method (i.e. its key)
|
||||||
|
is enabled in this organization.
|
||||||
|
available:
|
||||||
|
type: boolean
|
||||||
|
description: |
|
||||||
|
Boolean describing whether the authentication method is available for use.
|
||||||
|
If false, the organization is not eligible to enable the authentication
|
||||||
|
method.
|
||||||
|
unavailable_reason:
|
||||||
|
type: string
|
||||||
|
description: |
|
||||||
|
Reason why the authentication method is unavailable. This field is optional
|
||||||
|
and is only present when 'available' is false.
|
||||||
|
additionalProperties: false
|
||||||
|
description: |
|
||||||
|
Dictionary describing the properties of an authentication method for the
|
||||||
|
organization - its enabled status and availability for use by the
|
||||||
|
organization.
|
||||||
RealmEmoji:
|
RealmEmoji:
|
||||||
type: object
|
type: object
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
|
|
Loading…
Reference in New Issue