mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
This adds a new section to the admin panel called "Activity", that supplies charts, graphs and details about messages entering and leaving the host. A new daemon captures details of system mail activity by monitoring the /var/log/mail.log file, summarizing it into a sqllite database that's kept in user-data.
33 lines
856 B
Python
33 lines
856 B
Python
def select_top(c, select, start, end, y, fields, field_types):
|
|
'''`c` is a cursor
|
|
|
|
`select` is the select query `start` and `end` are the range in
|
|
the format YYYY-MM-DD HH:MM:SS and the select query must have
|
|
substitutes 'start_date' and 'end_date'.
|
|
|
|
`y` is a description of the dataset
|
|
|
|
`fields` are all fields to select by name
|
|
|
|
`field_types` are the corresponding field types the caller will
|
|
need to render the data visuals
|
|
'''
|
|
|
|
top = {
|
|
'start': start,
|
|
'end': end,
|
|
'y': y,
|
|
'fields': fields,
|
|
'field_types': field_types,
|
|
'items': []
|
|
}
|
|
for row in c.execute(select, {
|
|
'start_date':start,
|
|
'end_date':end
|
|
}):
|
|
v = {}
|
|
for key in fields:
|
|
v[key] = row[key]
|
|
top['items'].append(v)
|
|
return top
|