在 Django 中验证 slug

发布于 2024-07-23 05:05:52 字数 248 浏览 5 评论 0原文

我猜这将涉及正则表达式或其他东西,但我会尝试一下。 目前,用户可以通过在标题字段中输入类似于 £$(*£$(£@$&£($) 的内容来破坏网站,该内容会使用 Django 转换为 slug slugify

因为这些字符都无法转换,所以我的问题是,我应该在表单验证方法中添加什么来引发 forms.ValidationError 。用户使用这样的标题?

谢谢。

I'm guessing this is going to involve regexp or something, but I'll give it a shot. At the minute, a user can break a website by typing something similar to £$(*£$(£@$&£($ in the title field, which is converted into a slug using Django slugify.

Because none of these characters can be converted, Django returns an error. My question is, what should I put in the form validation method to raise a forms.ValidationError when the user uses a title like this?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

决绝 2024-07-30 05:05:53
SLUG_REGEX = re.compile('^[-\w]+
)
SLUG_REGEX = re.compile('^[-\w]+
)
情未る 2024-07-30 05:05:52

这个问题已有五年历史了,所以在更新我的问题时,我应该解释一下,我至少是在向过去点头,其中某些功能可能不存在。

如今,处理表单中的 slug 最简单的方法就是使用 django.models.SlugField。 它会为您验证自身并暗示该字段是一个索引。

如果您不在模型上使用它,您仍然可以挂钩 SlugField 使用的同一验证器:

from django.core.validators import validate_slug

slug = forms.CharField(..., validators=[validate_slug])

如果您只想进行幕后检查或编写自己的验证器,您可以使用类似的技术来引入Django 对有效 slug 的定义。 这只是上面 validate_slug 使用的编译后的正则表达式:

from django.core.validators import slug_re

if slug_re.match(...):
    ...

我无法想象它会改变,但是通过将自己锁定在 Django 的 slug 想法上,如果 Django 有一天确实改变了,你将确保一致性。

This question is half a decade old so in updating my question I should explain that I'm at least nodding to the past where some features might not have existed.

The easiest way to handle slugs in forms these days is to just use django.models.SlugField. It will validate itself for you and imply that this field is an index.

If you're not using this on a model, you can still hook in the same validator that SlugField uses:

from django.core.validators import validate_slug

slug = forms.CharField(..., validators=[validate_slug])

If you just want to do behind-the-scenes checking or write your own validator, you can use a similar technique to pull in Django's definition of a valid slug. It's just the compiled regex that validate_slug above uses:

from django.core.validators import slug_re

if slug_re.match(...):
    ...

I can't imagine it will change, but by locking yourself to Django's idea of a slug, you'll ensure consistency if Django does change one day.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文