Commit dcc74364 authored by ibuler's avatar ibuler

[Update] 添加上传日志

parent 562de32d
import os import os
import tempfile import tempfile
import paramiko import paramiko
import time
from datetime import datetime
from .connection import SSHConnection from .connection import SSHConnection
...@@ -65,6 +67,27 @@ class SFTPServer(paramiko.SFTPServerInterface): ...@@ -65,6 +67,27 @@ class SFTPServer(paramiko.SFTPServerInterface):
return [] return []
return [su for su in asset.system_users_granted if su.protocol == "ssh"] return [su for su in asset.system_users_granted if su.protocol == "ssh"]
def create_ftp_log(self, path, operate, is_success=True, filename=None):
host, su, rpath = self.parse_path(path)
date_start = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + " +0000",
data = {
"user": self.server.request.user.username,
"asset": host,
"system_user": su,
"remote_addr": self.server.request.addr[0],
"operate": operate,
"filename": filename or rpath,
"date_start": date_start,
"is_success": is_success,
}
for i in range(1, 4):
ok = self.server.app.service.create_ftp_log(data)
if ok:
break
else:
time.sleep(0.5)
continue
@staticmethod @staticmethod
def stat_host_dir(): def stat_host_dir():
tmp = tempfile.TemporaryDirectory() tmp = tempfile.TemporaryDirectory()
...@@ -119,6 +142,7 @@ class SFTPServer(paramiko.SFTPServerInterface): ...@@ -119,6 +142,7 @@ class SFTPServer(paramiko.SFTPServerInterface):
def open(self, path, flags, attr): def open(self, path, flags, attr):
binary_flag = getattr(os, 'O_BINARY', 0) binary_flag = getattr(os, 'O_BINARY', 0)
flags |= binary_flag flags |= binary_flag
success = False
if flags & os.O_WRONLY: if flags & os.O_WRONLY:
if flags & os.O_APPEND: if flags & os.O_APPEND:
...@@ -134,67 +158,106 @@ class SFTPServer(paramiko.SFTPServerInterface): ...@@ -134,67 +158,106 @@ class SFTPServer(paramiko.SFTPServerInterface):
mode = 'rb' mode = 'rb'
sftp, rpath = self.get_sftp_rpath(path) sftp, rpath = self.get_sftp_rpath(path)
if 'r' in mode:
operate = "Download"
else:
operate = "Upload"
result = None
if sftp is not None: if sftp is not None:
f = sftp.open(rpath, mode, bufsize=4096) try:
obj = paramiko.SFTPHandle(flags) f = sftp.open(rpath, mode, bufsize=4096)
obj.filename = rpath obj = paramiko.SFTPHandle(flags)
obj.readfile = f obj.filename = rpath
obj.writefile = f obj.readfile = f
return obj obj.writefile = f
result = obj
success = True
except OSError:
pass
self.create_ftp_log(path, operate, success)
return result
def remove(self, path): def remove(self, path):
sftp, rpath = self.get_sftp_rpath(path) sftp, rpath = self.get_sftp_rpath(path)
success = False
if sftp is not None: if sftp is not None:
try: try:
sftp.remove(rpath) sftp.remove(rpath)
except OSError as e: except OSError as e:
return paramiko.SFTPServer.convert_errno(e.errno) result = paramiko.SFTPServer.convert_errno(e.errno)
return paramiko.SFTP_OK else:
result = paramiko.SFTP_OK
success = True
else: else:
return paramiko.SFTP_FAILURE result = paramiko.SFTP_FAILURE
self.create_ftp_log(path, "Delete", success)
return result
def rename(self, src, dest): def rename(self, src, dest):
host1, su1, rsrc = self.parse_path(src) host1, su1, rsrc = self.parse_path(src)
host2, su2, rdest = self.parse_path(dest) host2, su2, rdest = self.parse_path(dest)
success = False
if host1 == host2 and su1 == su2 and host1: if host1 == host2 and su1 == su2 and host1:
sftp = self.get_host_sftp(host1, su1) sftp = self.get_host_sftp(host1, su1)
try: try:
sftp.rename(rsrc, rdest) sftp.rename(rsrc, rdest)
success = True
except OSError as e: except OSError as e:
return paramiko.SFTPServer.convert_errno(e.errno) result = paramiko.SFTPServer.convert_errno(e.errno)
return paramiko.SFTP_OK else:
return paramiko.SFTP_FAILURE result = paramiko.SFTP_OK
else:
result = paramiko.SFTP_FAILURE
filename = "{}=>{}".format(rsrc, rdest)
self.create_ftp_log(rsrc, "Rename", success, filename=filename)
return result
def mkdir(self, path, attr): def mkdir(self, path, attr):
sftp, rpath = self.get_sftp_rpath(path) sftp, rpath = self.get_sftp_rpath(path)
success = False
if sftp is not None and rpath != '/': if sftp is not None and rpath != '/':
try: try:
sftp.mkdir(rpath) sftp.mkdir(rpath)
success = True
except OSError as e: except OSError as e:
return paramiko.SFTPServer.convert_errno(e.errno) result = paramiko.SFTPServer.convert_errno(e.errno)
return paramiko.SFTP_OK else:
return paramiko.SFTP_FAILURE result = paramiko.SFTP_OK
else:
result = paramiko.SFTP_FAILURE
self.create_ftp_log(path, "MakeDir", success)
return result
def rmdir(self, path): def rmdir(self, path):
sftp, rpath = self.get_sftp_rpath(path) sftp, rpath = self.get_sftp_rpath(path)
success = False
if sftp is not None: if sftp is not None:
try: try:
sftp.rmdir(rpath) sftp.rmdir(rpath)
success = True
except OSError as e: except OSError as e:
return paramiko.SFTPServer.convert_errno(e.errno) result = paramiko.SFTPServer.convert_errno(e.errno)
return paramiko.SFTP_OK else:
result = paramiko.SFTP_OK
else:
result = paramiko.SFTP_FAILURE
self.create_ftp_log(path, "RmDir", success)
return result
def chattr(self, path, attr): # def chattr(self, path, attr):
sftp, rpath = self.get_sftp_rpath(path) # sftp, rpath = self.get_sftp_rpath(path)
if sftp is not None: # if sftp is not None:
if attr._flags & attr.FLAG_PERMISSIONS: # if attr._flags & attr.FLAG_PERMISSIONS:
sftp.chmod(rpath, attr.st_mode) # sftp.chmod(rpath, attr.st_mode)
if attr._flags & attr.FLAG_UIDGID: # if attr._flags & attr.FLAG_UIDGID:
sftp.chown(rpath, attr.st_uid, attr.st_gid) # sftp.chown(rpath, attr.st_uid, attr.st_gid)
if attr._flags & attr.FLAG_AMTIME: # if attr._flags & attr.FLAG_AMTIME:
sftp.utime(rpath, (attr.st_atime, attr.st_mtime)) # sftp.utime(rpath, (attr.st_atime, attr.st_mtime))
if attr._flags & attr.FLAG_SIZE: # if attr._flags & attr.FLAG_SIZE:
sftp.truncate(rpath, attr.st_size) # sftp.truncate(rpath, attr.st_size)
return paramiko.SFTP_OK # return paramiko.SFTP_OK
...@@ -20,7 +20,7 @@ Jinja2==2.10 ...@@ -20,7 +20,7 @@ Jinja2==2.10
jmespath==0.9.3 jmespath==0.9.3
jms-es-sdk==0.5.2 jms-es-sdk==0.5.2
jms-storage==0.0.12 jms-storage==0.0.12
jumpserver-python-sdk==0.0.36 jumpserver-python-sdk==0.0.39
MarkupSafe==1.0 MarkupSafe==1.0
oss2==2.4.0 oss2==2.4.0
paramiko==2.4.0 paramiko==2.4.0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment