Python如何解决secure_filename对中文不支持问题


Posted in Python onJuly 16, 2021

前言:最近使用到了secure_filename,然后悲剧的发现中文居然不展示出来,于是我慢慢的debug,终于找到问题了。

一、最近使用secure_filename发现的问题

文件名是中文版的,悲剧的是中文以及其他特殊字符会被省略。

Python如何解决secure_filename对中文不支持问题

二、后面找到了原因

原来secure_filename()函数只返回ASCII字符,非ASCII字符会被过滤掉。

三、解决方案

找到secure_filename(filename)函数,修改它的源代码。

secure_filename(filename)函数源代码:
def secure_filename(filename: str) -> str:
    r"""Pass it a filename and it will return a secure version of it.  This
    filename can then safely be stored on a regular file system and passed
    to :func:`os.path.join`.  The filename returned is an ASCII only string
    for maximum portability.

    On windows systems the function also makes sure that the file is not
    named after one of the special device files.

    >>> secure_filename("My cool movie.mov")
    'My_cool_movie.mov'
    >>> secure_filename("../../../etc/passwd")
    'etc_passwd'
    >>> secure_filename('i contain cool \xfcml\xe4uts.txt')
    'i_contain_cool_umlauts.txt'

    The function might return an empty filename.  It's your responsibility
    to ensure that the filename is unique and that you abort or
    generate a random filename if the function returned an empty one.

    .. versionadded:: 0.5

    :param filename: the filename to secure
    """
    filename = unicodedata.normalize("NFKD", filename)
    filename = filename.encode("ascii", "ignore").decode("ascii")

    for sep in os.path.sep, os.path.altsep:
        if sep:
            filename = filename.replace(sep, " ")
    filename = str(_filename_ascii_strip_re.sub("", "_".join(filename.split()))).strip(
        "._"
    )

    # on nt a couple of special files are present in each folder.  We
    # have to ensure that the target file is not such a filename.  In
    # this case we prepend an underline
    if (
        os.name == "nt"
        and filename
        and filename.split(".")[0].upper() in _windows_device_files
    ):
        filename = f"_{filename}"

    return filename

secure_filename(filename)函数修改后的代码:

def secure_filename(filename: str) -> str:
    r"""Pass it a filename and it will return a secure version of it.  This
    filename can then safely be stored on a regular file system and passed
    to :func:`os.path.join`.  The filename returned is an ASCII only string
    for maximum portability.

    On windows systems the function also makes sure that the file is not
    named after one of the special device files.

    >>> secure_filename("My cool movie.mov")
    'My_cool_movie.mov'
    >>> secure_filename("../../../etc/passwd")
    'etc_passwd'
    >>> secure_filename('i contain cool \xfcml\xe4uts.txt')
    'i_contain_cool_umlauts.txt'

    The function might return an empty filename.  It's your responsibility
    to ensure that the filename is unique and that you abort or
    generate a random filename if the function returned an empty one.

    .. versionadded:: 0.5

    :param filename: the filename to secure
    """
    filename = unicodedata.normalize("NFKD", filename)
    filename = filename.encode("utf8", "ignore").decode("utf8")   # 编码格式改变

    for sep in os.path.sep, os.path.altsep:
        if sep:
            filename = filename.replace(sep, " ")
    _filename_ascii_add_strip_re = re.compile(r'[^A-Za-z0-9_\u4E00-\u9FBF\u3040-\u30FF\u31F0-\u31FF.-]')
    filename = str(_filename_ascii_add_strip_re.sub('', '_'.join(filename.split()))).strip('._')             # 添加新规则

    # on nt a couple of special files are present in each folder.  We
    # have to ensure that the target file is not such a filename.  In
    # this case we prepend an underline
    if (
        os.name == "nt"
        and filename
        and filename.split(".")[0].upper() in _windows_device_files
    ):
        filename = f"_{filename}"

    return filename

四、效果展示

我们很清楚的看到了效果,目前是支持中文的

Python如何解决secure_filename对中文不支持问题

到此这篇关于Python如何解决secure_filename对中文不支持问题的文章就介绍到这了,更多相关Python secure_filename不支持中文内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
python读写json文件的简单实现
Apr 11 Python
python登录并爬取淘宝信息代码示例
Dec 09 Python
Python 通配符删除文件的实例
Apr 24 Python
对python中两种列表元素去重函数性能的比较方法
Jun 29 Python
pandas使用get_dummies进行one-hot编码的方法
Jul 10 Python
python实现狄克斯特拉算法
Jan 17 Python
Python中字典与恒等运算符的用法分析
Aug 22 Python
对Python 中矩阵或者数组相减的法则详解
Aug 26 Python
Python 函数list&read&seek详解
Aug 28 Python
用python按照图像灰度值统计并筛选图片的操作(PIL,shutil,os)
Jun 04 Python
Python使用Opencv实现边缘检测以及轮廓检测的实现
Dec 31 Python
Python3中最常用的5种线程锁实例总结
Jul 07 Python
利用Matlab绘制各类特殊图形的实例代码
Flask response响应的具体使用
Python 快速验证代理IP是否有效的方法实现
Jul 15 #Python
Django路由层如何获取正确的url
Jul 15 #Python
Python实现排序方法常见的四种
Jul 15 #Python
手把手教你使用TensorFlow2实现RNN
一篇文章弄懂Python关键字、标识符和变量
You might like
PHP实现多进程并行操作的详解(可做守护进程)
2013/06/18 PHP
PHP如何利用P3P实现跨域
2013/08/24 PHP
php连接odbc数据源并保存与查询数据的方法
2014/12/24 PHP
cakephp打印sql语句的方法
2015/02/13 PHP
微信支付PHP SDK之微信公众号支付代码详解
2015/12/09 PHP
php str_replace替换指定次数的方法详解
2017/05/05 PHP
js 幻灯片的实现
2011/12/06 Javascript
jquery使用ul模拟select实现表单美化的方法
2015/08/18 Javascript
JavaScript获取css行间样式,内连样式和外链样式的简单方法
2016/07/18 Javascript
Javascript ES6中对象类型Sets的介绍与使用详解
2017/07/17 Javascript
微信小程序实现根据字母选择城市功能
2017/08/16 Javascript
JS实现带导航城市列表以及输入搜索功能
2018/01/04 Javascript
详解Vue中数组和对象更改后视图不刷新的问题
2018/09/21 Javascript
JavaScript两种计时器的实例讲解
2019/01/31 Javascript
使用Node.js实现一个多人游戏服务器引擎
2019/03/13 Javascript
世界上最短的数字判断js代码
2019/09/09 Javascript
vue实现五子棋游戏
2020/05/28 Javascript
[04:32]玩具屠夫中文语音节选
2020/08/23 DOTA
pymssql ntext字段调用问题解决方法
2008/12/17 Python
Python栈类实例分析
2015/06/15 Python
python3 tkinter实现添加图片和文本
2019/11/26 Python
使用python绘制cdf的多种实现方法
2020/02/25 Python
python 爬取英雄联盟皮肤并下载的示例
2020/12/04 Python
weblogic面试题
2016/03/07 面试题
如何理解委托
2012/01/06 面试题
机修工工作职责
2014/02/21 职场文书
服务宗旨标语
2014/07/01 职场文书
小学综合实践活动总结
2014/07/07 职场文书
党员学习中共十八大思想报告
2014/09/12 职场文书
公司离职证明范本(5篇)
2014/09/17 职场文书
就业导师推荐信范文
2015/03/27 职场文书
工作计划范文之财务管理
2019/08/09 职场文书
七年级作文之《我和我的祖国》观后感作文
2019/10/18 职场文书
Nginx本地目录映射实现代码实例
2021/03/31 Servers
Nginx反向代理及负载均衡如何实现(基于linux)
2021/03/31 Servers
图文详解nginx日志切割的实现
2022/01/18 Servers