gpt4 book ai didi

swift - 如何在GCDWebUploader中限制上传文件类型/格式

转载 作者:行者123 更新时间:2023-11-30 10:34:28 28 4
gpt4 key购买 nike

我的应用程序涉及 GCDWebUploader,用于将音频文件上传到 iPhone 的沙箱。它运行良好,但我想限制用户可以上传的上传文件类型/格式,例如xxx.doc、xxx.jpg 禁止上传。目前我只想允许 .MP3 和 .AAC 格式。

我在GCDWebUploader.m中找到了这个uploadFile方法,也许这就是我需要的,在另一个类中重写这个方法。但它是在 Objective-C 中,我如何在 Swift 中使用它?另外我需要在 htmljs 文件中进行相应的更改。欢迎任何帮助和提示。

///GCDWebUploader.m中的uploadFile方法

- (GCDWebServerResponse*)uploadFile:(GCDWebServerMultiPartFormRequest*)request {
NSRange range = [[request.headers objectForKey:@"Accept"] rangeOfString:@"application/json" options:NSCaseInsensitiveSearch];
NSString* contentType = (range.location != NSNotFound ? @"application/json" : @"text/plain; charset=utf-8"); // Required when using iFrame transport (see https://github.com/blueimp/jQuery-File-Upload/wiki/Setup)

GCDWebServerMultiPartFile* file = [request firstFileForControlName:@"files[]"];
if ((!_allowHiddenItems && [file.fileName hasPrefix:@"."]) || ![self _checkFileExtension:file.fileName]) {
return [GCDWebServerErrorResponse responseWithClientError:kGCDWebServerHTTPStatusCode_Forbidden message:@"Uploaded file name \"%@\" is not allowed", file.fileName];
}
NSString* relativePath = [[request firstArgumentForControlName:@"path"] string];
NSString* absolutePath = [self _uniquePathForPath:[[_uploadDirectory stringByAppendingPathComponent:GCDWebServerNormalizePath(relativePath)] stringByAppendingPathComponent:file.fileName]];

if (![self shouldUploadFileAtPath:absolutePath withTemporaryFile:file.temporaryPath]) {
return [GCDWebServerErrorResponse responseWithClientError:kGCDWebServerHTTPStatusCode_Forbidden message:@"Uploading file \"%@\" to \"%@\" is not permitted", file.fileName, relativePath];
}

///index.html中的Alert,可用于上传警告的Alert。

    <script type="text/x-tmpl" id="template-alert">
<div class="alert alert-{%=o.level%} alert-dismissable">
<button type="button" class="close" data-dismiss="alert">&times;</button>
<strong>{%=o.title%}</strong>{%=o.description%}
</div>
</script>

///index.js中的代码

    fail: function(e, data) {
var file = data.files[0];
if (data.errorThrown != "abort") {
_showError("Failed uploading \"" + file.name + "\" to \"" + _path + "\"", data.textStatus, data.errorThrown);
}
},

最佳答案

嗯,我今天找到了如何做到这一点。很简单,只需定义allowedFileExtensions属性即可,该属性在GCDWebUploader中提供。在我的例子中,代码片段如下。

///在自己的类中定义这个属性,那么这个问题就解决了。

// create webUploader, access with your iPhone's IP from computer's browser.
static func initWebUploader() {
webUploader.start()
webUploader.allowedFileExtensions = ["aac", "mp3"]
if webUploader.serverURL != nil {
print("Visit \(webUploader.serverURL!) in your web browser")
} else {
print("You are not connected with Wifi")
}
}

关于swift - 如何在GCDWebUploader中限制上传文件类型/格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58379482/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com