接入下载

main
wuyize 2023-07-06 16:18:05 +08:00
parent afe96c5c2d
commit c1e2eba4d1
2 changed files with 30 additions and 28 deletions

View File

@ -83,17 +83,18 @@ FluArea {
function getType(suffix) { function getType(suffix) {
if (suffix === "md") if (suffix === "md")
return "MD" return "MD"
else if(suffix === "mp4" || suffix === "avi" else if (suffix === "mp4" || suffix === "avi" || suffix === "rmvb"
|| suffix === "rmvb" || suffix === "rm" || suffix === "rm" || suffix === "wmv" || suffix === "mkv")
|| suffix === "wmv" || suffix === "mkv")
return "VIDEO" return "VIDEO"
else return "OTHER" else
return "OTHER"
} }
function loadFile(knowledgeFileId) { function loadFile(knowledgeFileId) {
content_area.knowledgeFileId = knowledgeFileId content_area.knowledgeFileId = knowledgeFileId
console.log(knowledgeFileId) console.log(knowledgeFileId)
Request.get("knowledge/" + knowledgeFileId, function (response, data) { Request.get("knowledge/" + knowledgeFileId,
function (response, data) {
content_page.publishTime = data.createTime content_page.publishTime = data.createTime
content_page.title = data.name content_page.title = data.name
content_page.fileId = data.knowledgeFileAttribute.id content_page.fileId = data.knowledgeFileAttribute.id
@ -208,7 +209,8 @@ FluArea {
} }
onClicked: { onClicked: {
emit: content_area.download(content_area.knowledgeFileId) emit: content_area.download(content_area.knowledgeFileId)
FileTransferManager.download(content_area.knowledgeFileId) FileTransferManager.download(content_page.fileId,
content_page.title)
} }
} }
} }

View File

@ -304,8 +304,7 @@ bool httpDownload(const std::string &url, const std::string &savePath, const Fil
if (!obj.curlHandle) if (!obj.curlHandle)
return false; return false;
obj.totalSize = item.totalSize;//原始文件大小 obj.totalSize = item.totalSize;//原始文件大小
obj.file = std::ofstream(savePath, std::ios::binary | std::ios::app); obj.file = std::ofstream(savePath, std::ios::binary);
if (!obj.file.is_open()) { if (!obj.file.is_open()) {
qDebug() << "Open File Failed"; qDebug() << "Open File Failed";
curl_easy_cleanup(obj.curlHandle); curl_easy_cleanup(obj.curlHandle);
@ -348,7 +347,8 @@ void FileTransferManager::download(const QString &fileId, const QString &fileNam
} }
auto size = resJson["size"].toInteger(); auto size = resJson["size"].toInteger();
std::string savePath = "D:\\Downloads\\" + fileName.toStdString(); std::string savePath = "D:\\Downloads\\" + fileName.toLocal8Bit().toStdString();
qDebug() << savePath.c_str();
QFileInfo fileInfo(savePath.c_str()); QFileInfo fileInfo(savePath.c_str());
int64_t completedSize = fileInfo.exists() ? fileInfo.size() : 0; int64_t completedSize = fileInfo.exists() ? fileInfo.size() : 0;
FileItem item{true, fileId, fileName, completedSize, size}; FileItem item{true, fileId, fileName, completedSize, size};