mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-29 04:01:24 +00:00
Merge pull request #6521 from haiwen/event_msg_to_json
event msg to json
This commit is contained in:
commit
ae5c17b4bf
@ -328,8 +328,9 @@ class ReposView(APIView):
|
||||
utc_dt = datetime.datetime.utcnow()
|
||||
timestamp = utc_dt.strftime('%Y-%m-%d %H:%M:%S')
|
||||
org_id = request.user.org.org_id if is_org_context(request) else -1
|
||||
from seahub.utils import send_user_login_msg
|
||||
try:
|
||||
seafile_api.publish_event('seahub.stats', 'user-login\t%s\t%s\t%s' % (email, timestamp, org_id))
|
||||
send_user_login_msg(email, timestamp, org_id)
|
||||
except Exception as e:
|
||||
logger.error('Error when sending user-login message: %s' % str(e))
|
||||
|
||||
|
@ -1004,8 +1004,9 @@ class Repos(APIView):
|
||||
if is_org_context(request):
|
||||
org_id = request.user.org.org_id
|
||||
|
||||
from seahub.utils import send_user_login_msg
|
||||
try:
|
||||
seafile_api.publish_event('seahub.stats', 'user-login\t%s\t%s\t%s' % (email, timestamp, org_id))
|
||||
send_user_login_msg(email, timestamp, org_id)
|
||||
except Exception as e:
|
||||
logger.error('Error when sending user-login message: %s' % str(e))
|
||||
response = HttpResponse(json.dumps(repos_json), status=200,
|
||||
|
@ -2,6 +2,7 @@ import hashlib
|
||||
import os
|
||||
import logging
|
||||
import posixpath
|
||||
import json
|
||||
|
||||
from seaserv import seafile_api
|
||||
|
||||
@ -119,9 +120,16 @@ def send_draft_publish_msg(draft, username, path):
|
||||
repo_id = draft.origin_repo_id
|
||||
old_path = draft.draft_file_path
|
||||
|
||||
msg = '%s\t%s\t%s\t%s\t%s\t%s' % ("publish", "draft", repo_id, username, path, old_path)
|
||||
msg = {
|
||||
'msg_type': 'publish',
|
||||
'obj_type': draft,
|
||||
'repo_id': repo_id,
|
||||
'user_name': username,
|
||||
'path': path,
|
||||
'old_path': old_path,
|
||||
}
|
||||
|
||||
try:
|
||||
seafile_api.publish_event('seahub.draft', msg)
|
||||
seafile_api.publish_event('seahub.draft', json.dumps(msg))
|
||||
except Exception as e:
|
||||
logger.error("Error when sending draft publish message: %s" % str(e))
|
||||
|
@ -13,6 +13,7 @@ import tempfile
|
||||
import configparser
|
||||
import mimetypes
|
||||
import contextlib
|
||||
import json
|
||||
from datetime import datetime
|
||||
from urllib.parse import urlparse, urljoin
|
||||
|
||||
@ -1315,15 +1316,34 @@ def send_perm_audit_msg(etype, from_user, to, repo_id, path, perm):
|
||||
- `path`: dir path
|
||||
- `perm`: r or rw
|
||||
"""
|
||||
msg = 'perm-change\t%s\t%s\t%s\t%s\t%s\t%s' % \
|
||||
(etype, from_user, to, repo_id, path, perm)
|
||||
|
||||
msg = {
|
||||
'msg_type': 'perm-change',
|
||||
'etype': etype,
|
||||
'from_user': from_user,
|
||||
'to': to,
|
||||
'repo_id': repo_id,
|
||||
'file_path': path,
|
||||
'perm': perm,
|
||||
}
|
||||
|
||||
try:
|
||||
seafile_api.publish_event('seahub.audit', msg)
|
||||
seafile_api.publish_event('seahub.audit', json.dumps(msg))
|
||||
except Exception as e:
|
||||
logger.error("Error when sending perm-audit-%s message: %s" %
|
||||
(etype, str(e)))
|
||||
|
||||
|
||||
def send_user_login_msg(username, timestamp, org_id):
|
||||
msg = {
|
||||
'msg_type': 'user-login',
|
||||
'user_name': username,
|
||||
'timestamp': timestamp,
|
||||
'org_id': org_id,
|
||||
}
|
||||
seafile_api.publish_event('seahub.stats', json.dumps(msg))
|
||||
|
||||
|
||||
def get_origin_repo_info(repo_id):
|
||||
repo = seafile_api.get_repo(repo_id)
|
||||
if repo.origin_repo_id is not None:
|
||||
|
@ -1697,11 +1697,17 @@ def send_file_access_msg(request, repo, path, access_from):
|
||||
ip = get_remote_ip(request)
|
||||
user_agent = request.headers.get("user-agent")
|
||||
|
||||
msg = 'file-download-%s\t%s\t%s\t%s\t%s\t%s' % \
|
||||
(access_from, username, ip, user_agent, repo.id, path)
|
||||
msg = {
|
||||
'msg_type': 'file-download-' + access_from,
|
||||
'user_name': username,
|
||||
'ip': ip,
|
||||
'user_agent': user_agent,
|
||||
'repo_id': repo.id,
|
||||
'file_path': path,
|
||||
}
|
||||
|
||||
try:
|
||||
seafile_api.publish_event('seahub.audit', msg)
|
||||
seafile_api.publish_event('seahub.audit', json.dumps(msg))
|
||||
except Exception as e:
|
||||
logger.error("Error when sending file-download-%s message: %s" %
|
||||
(access_from, str(e)))
|
||||
|
Loading…
Reference in New Issue
Block a user