Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: per-user RSS feed #1232

Merged
merged 5 commits into from
Jul 12, 2024
Merged

feat: per-user RSS feed #1232

merged 5 commits into from
Jul 12, 2024

Conversation

aigoncharov
Copy link
Contributor

Добавляет RSS фид из постов клубчанина. См. #1231

Как тестил

  1. Накатил постов для теста с помощью docker exec -it club_app python3 manage.py import_posts_to_dev
  2. Проверил, что RSS фид всех постов работает (правильная ссылка и открывается нужная xmlка)
    image
  3. Проверил, что RSS фид для юзера работает (правильная ссылка и открывается нужная xmlка)
    image
  4. Проверил, что если в урле для пользовательского RSS фида вместо имени пользователя написать хрень, то будет 404

@aigoncharov aigoncharov requested a review from vas3k as a code owner July 11, 2024 15:43
posts/rss.py Outdated Show resolved Hide resolved
posts/rss.py Outdated Show resolved Hide resolved
posts/rss.py Outdated Show resolved Hide resolved
posts/rss.py Outdated Show resolved Hide resolved
posts/rss.py Outdated Show resolved Hide resolved
posts/rss.py Outdated Show resolved Hide resolved
posts/rss.py Outdated

def items(self, user):
res = Post.visible_objects()\
.filter(is_approved_by_moderator=True)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Кстати, не знаю, насколько это может быть ожидаемое поведение для тебя, но вот этот фильтр (is_approved_by_moderator) может быть причиной, почему ты какие-то посты каких-то людей в RSS не увидишь. Некоторые посты не аппрувятся, но и не реджектятся: например, мемопосты или что-то не совсем плохое, но и не совсем хорошее.

Просто пишу это, чтобы было ожидание, что посты в RSS пользователя могут не совпадать со списком постов пользователя на веб-странице.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Тут я просто оставил как было. Не знаешь толком что это - не трогай :)
Спасибо, что рассказал!

posts/rss.py Outdated Show resolved Hide resolved
@@ -10,6 +10,12 @@
{{ user.full_name }} — {{ block.super }}
{% endblock %}

{% block rss %}
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Тут надо не заменять контент родительского блока, а дописывать его

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vas3k часть RSS клиентов не любят, когда несколько фидов прилинковано на страницу. Берут рандомный по мановению пятки левой ноги. Я бы предложил заменять. Могу поправить если настаиваешь.

Второй коммент поправил.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ну ладно, поверю. На моем опыте таких проблем не встречал

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Я с этим столкнулся, когда конвертер телеги в рсс делал. Там куча фидов на домашней странице.

Copy link
Owner

@vas3k vas3k left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Во, ну намного же чище стало!

@vas3k vas3k merged commit 7f41ee7 into vas3k:master Jul 12, 2024
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants