mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.9 KiB
67 lines
1.9 KiB
import os
|
|
import csv
|
|
|
|
import pyzipper
|
|
import requests
|
|
import zipfile
|
|
|
|
from hashlib import md5
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
def create_csv_file(filename, headers, rows, ):
|
|
with open(filename, 'w', encoding='utf-8-sig') as f:
|
|
w = csv.writer(f)
|
|
w.writerow(headers)
|
|
w.writerows(rows)
|
|
|
|
|
|
def encrypt_and_compress_zip_file(filename, secret_password, encrypted_filenames):
|
|
with pyzipper.AESZipFile(
|
|
filename, 'w', compression=pyzipper.ZIP_LZMA, encryption=pyzipper.WZ_AES
|
|
) as zf:
|
|
if secret_password and isinstance(secret_password, str):
|
|
secret_password = secret_password.encode('utf8')
|
|
zf.setpassword(secret_password)
|
|
for encrypted_filename in encrypted_filenames:
|
|
with open(encrypted_filename, 'rb') as f:
|
|
zf.writestr(os.path.basename(encrypted_filename), f.read())
|
|
|
|
|
|
def zip_files(output_file, file_list):
|
|
"""
|
|
将多个文件打包成zip文件
|
|
Args:
|
|
output_file (str): 打包后的zip文件路径
|
|
file_list (list): 需要打包的文件列表
|
|
Returns:
|
|
None
|
|
"""
|
|
with zipfile.ZipFile(output_file, 'w') as zipf:
|
|
for file in file_list:
|
|
zipf.write(file, arcname=os.path.basename(file))
|
|
|
|
|
|
def download_file(src, path):
|
|
with requests.get(src, stream=True) as r:
|
|
r.raise_for_status()
|
|
with open(path, 'wb') as f:
|
|
for chunk in r.iter_content(chunk_size=8192):
|
|
f.write(chunk)
|
|
|
|
|
|
def save_content_to_temp_path(content, file_mode=0o400):
|
|
if not content:
|
|
return
|
|
|
|
project_dir = settings.PROJECT_DIR
|
|
tmp_dir = os.path.join(project_dir, 'tmp')
|
|
filename = '.' + md5(content.encode('utf-8')).hexdigest()
|
|
filepath = os.path.join(tmp_dir, filename)
|
|
if not os.path.exists(filepath):
|
|
with open(filepath, 'w') as f:
|
|
f.write(content)
|
|
os.chmod(filepath, file_mode)
|
|
return filepath
|