From 33c7ec42152573037504771dce730d8f5f27e17f Mon Sep 17 00:00:00 2001 From: Steve Howell Date: Fri, 1 Nov 2013 16:37:14 -0400 Subject: [PATCH] Add Clients tab to /realm_activity. (imported from commit c443ae6494584280dca21b3487aeba3a2e79643a) --- zerver/views/__init__.py | 65 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 63 insertions(+), 2 deletions(-) diff --git a/zerver/views/__init__.py b/zerver/views/__init__.py index 83cbb84f0e..21ee7b4d02 100644 --- a/zerver/views/__init__.py +++ b/zerver/views/__init__.py @@ -2502,6 +2502,59 @@ def format_date_for_activity_reports(date): else: return '' +def realm_client_table(user_summaries): + exclude_keys = [ + 'name', + 'use', + 'send', + 'pointer', + 'website', + ] + + rows = [] + for email, user_summary in user_summaries.items(): + email_link = '%s' % (email, email) + email_link = mark_safe(email_link) + name = user_summary['name'] + for k, v in user_summary.items(): + if k in exclude_keys: + continue + client = k + count = v['count'] + last_visit = v['last_visit'] + row = [ + format_date_for_activity_reports(last_visit), + client, + name, + email_link, + count, + ] + rows.append(row) + + rows = sorted(rows, key=lambda r: r[0], reverse=True) + + cols = [ + 'Last visit', + 'Client', + 'Name', + 'Email', + 'Count', + ] + + title = 'Clients' + + data = dict( + rows=rows, + cols=cols, + title=title + ) + + content = loader.render_to_string( + 'zerver/ad_hoc_query.html', + dict(data=data) + ) + return content + def user_activity_summary_table(user_summary): rows = [] for k, v in user_summary.items(): @@ -2601,22 +2654,30 @@ def realm_user_summary_table(all_records): dict(data=data) ) - return content + return user_records, content @zulip_internal def get_realm_activity(request, realm): data = [] + all_records = {} + all_user_records = {} for is_bot, page_title in [(False, 'Humans'), (True, 'Bots')]: all_records = get_user_activity_records_for_realm(realm, is_bot) all_records = list(all_records) - content = realm_user_summary_table(all_records) + user_records, content = realm_user_summary_table(all_records) + all_user_records.update(user_records) user_content = dict(content=content) data += [(page_title, user_content)] + page_title = 'Clients' + content = realm_client_table(all_user_records) + data += [(page_title, dict(content=content))] + + realm = None title = realm return render_to_response(