mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-18 08:35:18 +00:00
* fix: 修改 ConnectionTokenSecretSerializer * perf: connect token secret (#9155) Co-authored-by: feng <1304903146@qq.com> Co-authored-by: Jiangjie.Bai <bugatti_it@163.com> * feat: 作业迁移至个人级别 * perf: asset enabled (#9157) Co-authored-by: feng <1304903146@qq.com> * perf: 修改ConnectionTokenSecret Gateway数据结构; 修改Domain Gateway Model方法 * perf: ConnectionTokenSecret 返回 domain 信息 * refactor: 移动 Gateway Model 到 asset 目录下 * refactor: 移动 Gateway Model 单独到 gateway 文件中 * perf: 修改 GatewaySerializer 目录 * perf: 修改 GatewaySerializer 目录 Co-authored-by: fit2bot <68588906+fit2bot@users.noreply.github.com> Co-authored-by: feng <1304903146@qq.com> Co-authored-by: Aaron3S <chenyang@fit2cloud.com>
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
import os
|
|
import zipfile
|
|
|
|
from django.conf import settings
|
|
from rest_framework_bulk import BulkModelViewSet
|
|
|
|
from common.mixins import CommonApiMixin
|
|
from orgs.mixins.api import OrgBulkModelViewSet
|
|
from ..exception import PlaybookNoValidEntry
|
|
from ..models import Playbook
|
|
from ..serializers.playbook import PlaybookSerializer
|
|
|
|
__all__ = ["PlaybookViewSet"]
|
|
|
|
|
|
def unzip_playbook(src, dist):
|
|
fz = zipfile.ZipFile(src, 'r')
|
|
for file in fz.namelist():
|
|
fz.extract(file, dist)
|
|
|
|
|
|
class PlaybookViewSet(CommonApiMixin, BulkModelViewSet):
|
|
serializer_class = PlaybookSerializer
|
|
permission_classes = ()
|
|
model = Playbook
|
|
|
|
def perform_create(self, serializer):
|
|
instance = serializer.save()
|
|
src_path = os.path.join(settings.MEDIA_ROOT, instance.path.name)
|
|
dest_path = os.path.join(settings.DATA_DIR, "ops", "playbook", instance.id.__str__())
|
|
unzip_playbook(src_path, dest_path)
|
|
valid_entry = ('main.yml', 'main.yaml', 'main')
|
|
for f in os.listdir(dest_path):
|
|
if f in valid_entry:
|
|
return
|
|
os.remove(dest_path)
|
|
raise PlaybookNoValidEntry
|