婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁(yè) > 知識(shí)庫(kù) > Django實(shí)現(xiàn)文件分享系統(tǒng)的完整代碼

Django實(shí)現(xiàn)文件分享系統(tǒng)的完整代碼

熱門(mén)標(biāo)簽:荊州云電銷(xiāo)機(jī)器人供應(yīng)商 江蘇房產(chǎn)電銷(xiāo)機(jī)器人廠(chǎng)家 電信營(yíng)業(yè)廳400電話(huà)申請(qǐng) 遼寧400電話(huà)辦理多少錢(qián) 蘇州電銷(xiāo)機(jī)器人十大排行榜 悟空智電銷(xiāo)機(jī)器人6 外呼不封號(hào)系統(tǒng) 幫人做地圖標(biāo)注收費(fèi)算詐騙嗎 溫州旅游地圖標(biāo)注

一、效果展示

文件上傳和展示:

文件搜索:

文件下載:

刪除文件:

二、關(guān)鍵代碼

#urls.py

from django.urls import path,re_path
from .views import HomeView,DisplayView,MyView,SearchView
from . import views

app_name = 'share'
urlpatterns = [
    path('', HomeView.as_view(), name='home'),
    # 當(dāng)用戶(hù)發(fā)起主頁(yè)的GET請(qǐng)求時(shí)
    # 會(huì)調(diào)用 HomeView的父類(lèi)的get方法處理
    # 怎么調(diào)用呢,這里需要用到HomeView的父類(lèi)的as_view方法
    # 此方法會(huì)調(diào)用dispatch方法, 由后者根據(jù)請(qǐng)求類(lèi)型選擇響應(yīng)的處理函數(shù)
    path('s/code>', DisplayView.as_view(), name='display'),   #展示上傳成功的文件
    path('my/', MyView.as_view(), name='my'),            #管理文件
    path('search/', SearchView.as_view(), name='search'),    #搜索文件
    re_path(r'^download/(?Pid>\d*$)', views.Download, name='download'),   #下載文件
    re_path(r'^delete/(?Pid>\d*$)', views.DeleteFile, name='delete'),  #刪除文件

]

#views.py

from django.shortcuts import render
from django.views.generic import TemplateView,ListView
import random
import string
import json
from django.http import HttpResponse,HttpResponsePermanentRedirect,StreamingHttpResponse,HttpResponseRedirect
from .models import Upload
import os
# 創(chuàng)建視圖類(lèi)需要基礎(chǔ)視圖基類(lèi)
# 例如 TemplateView 就是用于展示頁(yè)面的模板視圖基類(lèi)
# 該類(lèi)僅提供get方法,用于處理GET請(qǐng)求
# 當(dāng)然也可以自定義其他方法,例如post
# 展示主頁(yè)的話(huà),只需要提供模板文件的名字即可
# 當(dāng)客戶(hù)端發(fā)起get請(qǐng)求時(shí),由父類(lèi)的get方法處理請(qǐng)求
# 該屬性用于提供模板文件,在父類(lèi)的方法中被調(diào)用
class HomeView(TemplateView):
    '''用來(lái)展示主頁(yè)的視圖類(lèi)
    '''
    template_name = "base.html"
    def post(self, request):
        if request.FILES:    #如果表單中有文件
            file = request.FILES.get('file')
            code = ''.join(random.sample(string.digits, 8))     #設(shè)置文件的唯一標(biāo)識(shí)code,并且用作文件改名
            name = file.name
            size = int(file.size)
            path = 'filesystem/static/file/' + code + name   #設(shè)置文件保存的路徑,并且更改文件名(防止重名文件)
            with open(path, 'wb') as f:
                f.write(file.read())      #保存文件

            upload = Upload(
                path = path,
                name = name,
                filesize = size,
                code = code,
                pcip = str(request.META['REMOTE_ADDR'])
            )
            upload.save()   #向數(shù)據(jù)庫(kù)插入數(shù)據(jù)
            return HttpResponsePermanentRedirect("/share/s/"+code)    #重定向到DisplayView

class DisplayView(ListView):
    '''展示文件的視圖類(lèi)
    '''
    def get(self, request, code):
        uploads = Upload.objects.filter(code=code)     #顯示出指定文件
        if uploads:
            for upload in uploads:
                upload.dowmloadcount += 1   #記錄訪(fǎng)問(wèn)次數(shù)
                upload.save()
        return render(request, 'content.html', {'content':uploads, 'host':request.get_host()})

class MyView(ListView):
    '''
    用戶(hù)管理視圖類(lèi),就是用戶(hù)管理文件的那個(gè)頁(yè)面的視圖類(lèi)
    '''
    def get(self, request):
        #ip = request.META['REMOTE_ADDR']
        #uploads = Upload.objects.filter(pcip=ip)  
        uploads = Upload.objects.all()     #查詢(xún)所有文件
        for upload in uploads:
            upload.dowmloadcount += 1
            upload.save()
        return render(request, 'content.html', {'content':uploads})   #將所有文件信息渲染展示

class SearchView(ListView):
    '''搜索功能的視圖類(lèi)
    '''
    def get(self, request):
        code = request.GET.get('kw')   # 獲取關(guān)鍵詞
        u = Upload.objects.filter(name__icontains=str(code))    # 模糊搜索
        # select * from share_upload where name like '%code%';
        data = {}
        if u:
            # 將符合條件的數(shù)據(jù)放到data中
            for i in range(len(u)):           # 循環(huán)輸出查詢(xún)的結(jié)果
                u[i].dowmloadcount += 1
                u[i].save()
                data[i]={}
                data[i]['download'] = u[i].dowmloadcount
                data[i]['filename'] = u[i].name
                data[i]['id'] = u[i].id
                data[i]['ip'] = str(u[i].pcip)
                data[i]['size'] = u[i].filesize
                data[i]['time'] = str(u[i].datetime.strftime('%Y-%m-%d %H:%M'))

        return HttpResponse(json.dumps(data), content_type="application/json")


def Download(request, id):
    """
    下載壓縮文件
    :param request:
    :param id: 數(shù)據(jù)庫(kù)id
    :return:
    """
    data = Upload.objects.all()
    file_name = ""  # 文件名
    for i in data:
        if i.code == id:  # 判斷id一致時(shí)
            file_name = i.name  # 覆蓋變量

    base_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))  # 項(xiàng)目根目錄
    file_path = os.path.join(base_dir, 'filesystem', 'static', 'file', file_name)  # 下載文件的絕對(duì)路徑

    if not os.path.isfile(file_path):  # 判斷下載文件是否存在
        return HttpResponse("Sorry but Not Found the File")

    def file_iterator(file_path, chunk_size=512):
        """
        文件生成器,防止文件過(guò)大,導(dǎo)致內(nèi)存溢出
        :param file_path: 文件絕對(duì)路徑
        :param chunk_size: 塊大小
        :return: 生成器
        """
        with open(file_path, mode='rb') as f:
            while True:
                c = f.read(chunk_size)
                if c:
                    yield c
                else:
                    break

    try:
        # 設(shè)置響應(yīng)頭
        # StreamingHttpResponse將文件內(nèi)容進(jìn)行流式傳輸,數(shù)據(jù)量大可以用這個(gè)方法
        response = StreamingHttpResponse(file_iterator(file_path))
        # 以流的形式下載文件,這樣可以實(shí)現(xiàn)任意格式的文件下載
        response['Content-Type'] = 'application/octet-stream'
        # Content-Disposition就是當(dāng)用戶(hù)想把請(qǐng)求所得的內(nèi)容存為一個(gè)文件的時(shí)候提供一個(gè)默認(rèn)的文件名
        response['Content-Disposition'] = 'attachment;filename="{}"'.format(file_name)
        
    except:
        return HttpResponse("Sorry but Not Found the File")
    return response

def DeleteFile(request, id):
    '''刪除指定文件'''
    data = Upload.objects.all()
    file_name = ""  # 文件名
    for i in data:
        if i.code == id:  # 判斷id一致時(shí)
            file_name = i.code + i.name  # 覆蓋變量

    base_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))  # 項(xiàng)目根目錄
    file_path = os.path.join(base_dir, 'filesystem', 'static', 'file', file_name)  # 下載文件的絕對(duì)路徑
    if os.path.exists(file_path):
        os.remove(file_path)
    file = Upload.objects.get(code=id)
    file.delete()
    return HttpResponseRedirect('/share/my/')

    '''
    except Exception as e:
        return http.HttpResponseForbidden('文件不存在,下載失敗!')
        '''

到此這篇關(guān)于Django實(shí)現(xiàn)文件分享系統(tǒng)的完整代碼的文章就介紹到這了,更多相關(guān)Django文件分享系統(tǒng)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • Python的Django中將文件上傳至七牛云存儲(chǔ)的代碼分享
  • Django 生成登陸驗(yàn)證碼代碼分享
  • django模型中的字段和model名顯示為中文小技巧分享
  • python常用web框架簡(jiǎn)單性能測(cè)試結(jié)果分享(包含django、flask、bottle、tornado)

標(biāo)簽:喀什 景德鎮(zhèn) 欽州 臺(tái)灣 三沙 黃山 宿遷 濟(jì)南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Django實(shí)現(xiàn)文件分享系統(tǒng)的完整代碼》,本文關(guān)鍵詞  Django,實(shí)現(xiàn),文件,分享,系統(tǒng),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Django實(shí)現(xiàn)文件分享系統(tǒng)的完整代碼》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于Django實(shí)現(xiàn)文件分享系統(tǒng)的完整代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 太谷县| 沈丘县| 余庆县| 玛沁县| 吉木萨尔县| 洪泽县| 桂平市| 通海县| 工布江达县| 平邑县| 竹溪县| 山东省| 通化县| 巢湖市| 江北区| 平顶山市| 冷水江市| 灵石县| 二手房| 民丰县| 大城县| 铜梁县| 平山县| 新邵县| 全州县| 马公市| 陆河县| 吉木乃县| 鄂尔多斯市| 丹巴县| 武夷山市| 牡丹江市| 礼泉县| 墨竹工卡县| 许昌县| 华容县| 勐海县| 梅河口市| 东港市| 荥经县| 大连市|