Module: check_mk
Branch: master
Commit: f6f499d61848fc9302626b4d6669c06d74e41448
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=f6f499d61848fc…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Fri Dec 1 12:47:51 2017 +0100
Cleaned up user profile saving code a bit
Change-Id: Ie46f8ff3474553cc45cb1f1eb27ea552ea791d07
---
web/htdocs/userdb.py | 147 +++++++++++++++++++++++++++++----------------------
1 file changed, 85 insertions(+), 62 deletions(-)
diff --git a/web/htdocs/userdb.py b/web/htdocs/userdb.py
index f863e8d..49ed4c3 100644
--- a/web/htdocs/userdb.py
+++ b/web/htdocs/userdb.py
@@ -674,7 +674,34 @@ def split_dict(d, keylist, positive):
return dict([(k,v) for (k,v) in d.items() if (k in keylist) == positive])
-def determine_save_users_data(profiles):
+def save_users(profiles):
+ write_contacts_and_users_file(profiles)
+
+ # Execute user connector save hooks
+ hook_save(profiles)
+
+ updated_profiles = _add_custom_macro_attributes(profiles)
+
+ _save_auth_serials(updated_profiles)
+ _save_user_profiles(updated_profiles)
+ _cleanup_old_user_profiles(updated_profiles)
+
+ # Release the lock to make other threads access possible again asap
+ # This lock is set by load_users() only in the case something is expected
+ # to be written (like during user syncs, wato, ...)
+ release_lock(root_dir + "contacts.mk")
+
+ # populate the users cache
+ # TODO: Can we clean this up?
+ html.set_cache('users', updated_profiles)
+
+ # Call the users_saved hook
+ hooks.call("users-saved", updated_profiles)
+
+
+# TODO: Isn't this needed only while generating the contacts.mk?
+# Check this and move it to the right place
+def _add_custom_macro_attributes(profiles):
import copy
updated_profiles = copy.deepcopy(profiles)
@@ -685,52 +712,14 @@ def determine_save_users_data(profiles):
if macro in updated_profiles[user]:
updated_profiles[user]['_'+macro] = updated_profiles[user][macro]
- multisite_custom_values = [ k for k,v in user_attributes.items() if v["domain"] == "multisite" ]
+ return updated_profiles
- # Keys not to put into contact definitions for Check_MK
- non_contact_keys = [
- "roles",
- "password",
- "locked",
- "automation_secret",
- "language",
- "serial",
- "connector",
- "num_failed_logins",
- "enforce_pw_change",
- "last_pw_change",
- "last_seen",
- "idle_timeout",
- ] + multisite_custom_values
-
- # Keys to put into multisite configuration
- multisite_keys = [
- "roles",
- "locked",
- "automation_secret",
- "alias",
- "language",
- "connector",
- ] + multisite_custom_values
-
- return non_contact_keys, multisite_keys, updated_profiles
-
-
-def save_users(profiles):
- write_contacts_and_users_file(profiles)
-
- # Execute user connector save hooks
- hook_save(profiles)
- non_contact_keys, multisite_keys, updated_profiles = determine_save_users_data(profiles)
+# Write user specific files
+def _save_user_profiles(updated_profiles):
+ non_contact_keys = _non_contact_keys()
+ multisite_keys = _multisite_keys()
- # Write out the users serials
- serials = ""
- for user_id, user in updated_profiles.items():
- serials += '%s:%d\n' % (make_utf8(user_id), user.get('serial', 0))
- store.save_file('%s/auth.serials' % os.path.dirname(cmk.paths.htpasswd_file), serials)
-
- # Write user specific files
for user_id, user in updated_profiles.items():
user_dir = cmk.paths.var_dir + "/web/" + user_id.encode("utf-8")
make_nagios_directory(user_dir)
@@ -761,12 +750,14 @@ def save_users(profiles):
save_cached_profile(user_id, user, multisite_keys, non_contact_keys)
- # During deletion of users we don't delete files which might contain user settings
- # and e.g. customized views which are not easy to reproduce. We want to keep the
- # files which are the result of a lot of work even when e.g. the LDAP sync deletes
- # a user by accident. But for some internal files it is ok to delete them.
- #
- # Be aware: The user_exists() function relies on these files to be deleted.
+
+# During deletion of users we don't delete files which might contain user settings
+# and e.g. customized views which are not easy to reproduce. We want to keep the
+# files which are the result of a lot of work even when e.g. the LDAP sync deletes
+# a user by accident. But for some internal files it is ok to delete them.
+#
+# Be aware: The user_exists() function relies on these files to be deleted.
+def _cleanup_old_user_profiles(updated_profiles):
profile_files_to_delete = [
"automation.secret",
"transids.mk",
@@ -783,20 +774,11 @@ def save_users(profiles):
if os.path.exists(entry + '/' + to_delete):
os.unlink(entry + '/' + to_delete)
- # Release the lock to make other threads access possible again asap
- # This lock is set by load_users() only in the case something is expected
- # to be written (like during user syncs, wato, ...)
- release_lock(root_dir + "contacts.mk")
-
- # populate the users cache
- html.set_cache('users', updated_profiles)
-
- # Call the users_saved hook
- hooks.call("users-saved", updated_profiles)
-
def write_contacts_and_users_file(profiles, custom_default_config_dir = None):
- non_contact_keys, multisite_keys, updated_profiles = determine_save_users_data(profiles)
+ non_contact_keys = _non_contact_keys()
+ multisite_keys = _multisite_keys()
+ updated_profiles = _add_custom_macro_attributes(profiles)
if custom_default_config_dir:
check_mk_config_dir = "%s/conf.d/wato" % custom_default_config_dir
@@ -839,6 +821,47 @@ def write_contacts_and_users_file(profiles, custom_default_config_dir = None):
store.save_to_mk_file("%s/%s" % (multisite_config_dir, "users.mk"), "multisite_users", users, pprint_value = config.wato_pprint_config)
+# User attributes not to put into contact definitions for Check_MK
+def _non_contact_keys():
+ return [
+ "roles",
+ "password",
+ "locked",
+ "automation_secret",
+ "language",
+ "serial",
+ "connector",
+ "num_failed_logins",
+ "enforce_pw_change",
+ "last_pw_change",
+ "last_seen",
+ "idle_timeout",
+ ] + _get_multisite_custom_variable_names()
+
+# User attributes to put into multisite configuration
+def _multisite_keys():
+ return [
+ "roles",
+ "locked",
+ "automation_secret",
+ "alias",
+ "language",
+ "connector",
+ ] + _get_multisite_custom_variable_names()
+
+
+def _get_multisite_custom_variable_names():
+ return [ k for k,v in user_attributes.items() if v["domain"] == "multisite" ]
+
+
+def _save_auth_serials(updated_profiles):
+ # Write out the users serials
+ serials = ""
+ for user_id, user in updated_profiles.items():
+ serials += '%s:%d\n' % (make_utf8(user_id), user.get('serial', 0))
+ store.save_file('%s/auth.serials' % os.path.dirname(cmk.paths.htpasswd_file), serials)
+
+
def rewrite_users():
users = load_users(lock=True)
save_users(users)
Module: check_mk
Branch: master
Commit: e62ca4916312c37cce5ddbf982825957e5d53ac4
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=e62ca4916312c3…
Author: Sven Panne <sp(a)mathias-kettner.de>
Date: Fri Dec 1 11:25:48 2017 +0100
5467 FIX Fixed interaction between periodic notifications and acknowledgements.
When an acknowledgement was removed or expired, any periodic notifications
would not be triggered again. This has been fixed.
Change-Id: If7a2267d133ee20b0065b04606ad3cccac2a5b90
---
.werks/5467 | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/.werks/5467 b/.werks/5467
new file mode 100644
index 0000000..4e7ea60
--- /dev/null
+++ b/.werks/5467
@@ -0,0 +1,11 @@
+Title: Fixed interaction between periodic notifications and acknowledgements.
+Level: 1
+Component: core
+Compatible: compat
+Edition: cee
+Version: 1.5.0i2
+Date: 1512123843
+Class: fix
+
+When an acknowledgement was removed or expired, any periodic notifications
+would not be triggered again. This has been fixed.