2018-03-24 21:06:27 +09:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
2023-05-23 17:15:17 +02:00
|
|
|
|
2018-09-24 04:44:01 +01:00
|
|
|
import { expandSpoilers } from '../../initial_state';
|
2018-03-24 21:06:27 +09:00
|
|
|
|
|
|
|
|
const domParser = new DOMParser();
|
|
|
|
|
|
2019-11-04 13:01:50 +01:00
|
|
|
export function searchTextFromRawStatus (status) {
|
|
|
|
|
const spoilerText = status.spoiler_text || '';
|
2020-06-08 17:11:42 -05:00
|
|
|
const searchContent = ([spoilerText, status.content].concat((status.poll && status.poll.options) ? status.poll.options.map(option => option.title) : [])).concat(status.media_attachments.map(att => att.description)).join('\n\n').replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n');
|
2019-11-04 13:01:50 +01:00
|
|
|
return domParser.parseFromString(searchContent, 'text/html').documentElement.textContent;
|
|
|
|
|
}
|
|
|
|
|
|
Revamp post filtering system (#18058)
* Add model for custom filter keywords
* Use CustomFilterKeyword internally
Does not change the API
* Fix /filters/edit and /filters/new
* Add migration tests
* Remove whole_word column from custom_filters (covered by custom_filter_keywords)
* Redesign /filters
Instead of a list, present a card that displays more information and handles
multiple keywords per filter.
* Redesign /filters/new and /filters/edit to add and remove keywords
This adds a new gem dependency: cocoon, as well as a npm dependency:
cocoon-js-vanilla. Those are used to easily populate and remove form fields
from the user interface when manipulating multiple keyword filters at once.
* Add /api/v2/filters to edit filter with multiple keywords
Entities:
- `Filter`: `id`, `title`, `filter_action` (either `hide` or `warn`), `context`
`keywords`
- `FilterKeyword`: `id`, `keyword`, `whole_word`
API endpoits:
- `GET /api/v2/filters` to list filters (including keywords)
- `POST /api/v2/filters` to create a new filter
`keywords_attributes` can also be passed to create keywords in one request
- `GET /api/v2/filters/:id` to read a particular filter
- `PUT /api/v2/filters/:id` to update a new filter
`keywords_attributes` can also be passed to edit, delete or add keywords in
one request
- `DELETE /api/v2/filters/:id` to delete a particular filter
- `GET /api/v2/filters/:id/keywords` to list keywords for a filter
- `POST /api/v2/filters/:filter_id/keywords/:id` to add a new keyword to a
filter
- `GET /api/v2/filter_keywords/:id` to read a particular keyword
- `PUT /api/v2/filter_keywords/:id` to edit a particular keyword
- `DELETE /api/v2/filter_keywords/:id` to delete a particular keyword
* Change from `irreversible` boolean to `action` enum
* Remove irrelevent `irreversible_must_be_within_context` check
* Fix /filters/new and /filters/edit with update for filter_action
* Fix Rubocop/Codeclimate complaining about task names
* Refactor FeedManager#phrase_filtered?
This moves regexp building and filter caching to the `CustomFilter` class.
This does not change the functional behavior yet, but this changes how the
cache is built, doing per-custom_filter regexps so that filters can be matched
independently, while still offering caching.
* Perform server-side filtering and output result in REST API
* Fix numerous filters_changed events being sent when editing multiple keywords at once
* Add some tests
* Use the new API in the WebUI
- use client-side logic for filters we have fetched rules for.
This is so that filter changes can be retroactively applied without
reloading the UI.
- use server-side logic for filters we haven't fetched rules for yet
(e.g. network error, or initial timeline loading)
* Minor optimizations and refactoring
* Perform server-side filtering on the streaming server
* Change the wording of filter action labels
* Fix issues pointed out by linter
* Change design of “Show anyway” link in accordence to review comments
* Drop “irreversible” filtering behavior
* Move /api/v2/filter_keywords to /api/v1/filters/keywords
* Rename `filter_results` attribute to `filtered`
* Rename REST::LegacyFilterSerializer to REST::V1::FilterSerializer
* Fix systemChannelId value in streaming server
* Simplify code by removing client-side filtering code
The simplifcation comes at a cost though: filters aren't retroactively
applied anymore.
2022-06-28 09:42:13 +02:00
|
|
|
export function normalizeFilterResult(result) {
|
|
|
|
|
const normalResult = { ...result };
|
|
|
|
|
|
|
|
|
|
normalResult.filter = normalResult.filter.id;
|
|
|
|
|
|
|
|
|
|
return normalResult;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-08 17:31:36 +02:00
|
|
|
function stripQuoteFallback(text) {
|
|
|
|
|
const wrapper = document.createElement('div');
|
|
|
|
|
wrapper.innerHTML = text;
|
|
|
|
|
|
|
|
|
|
wrapper.querySelector('.quote-inline')?.remove();
|
|
|
|
|
|
|
|
|
|
return wrapper.innerHTML;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-24 21:06:27 +09:00
|
|
|
export function normalizeStatus(status, normalOldStatus) {
|
|
|
|
|
const normalStatus = { ...status };
|
2025-05-21 17:50:45 +02:00
|
|
|
|
2018-03-24 21:06:27 +09:00
|
|
|
normalStatus.account = status.account.id;
|
|
|
|
|
|
|
|
|
|
if (status.reblog && status.reblog.id) {
|
|
|
|
|
normalStatus.reblog = status.reblog.id;
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-21 17:50:45 +02:00
|
|
|
if (status.quote?.quoted_status ?? status.quote?.quoted_status_id) {
|
|
|
|
|
normalStatus.quote = {
|
|
|
|
|
...status.quote,
|
|
|
|
|
quoted_status: status.quote.quoted_status?.id ?? status.quote?.quoted_status_id,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-03 22:18:23 +01:00
|
|
|
if (status.poll && status.poll.id) {
|
|
|
|
|
normalStatus.poll = status.poll.id;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-27 15:17:18 +02:00
|
|
|
if (status.card) {
|
|
|
|
|
normalStatus.card = {
|
|
|
|
|
...status.card,
|
|
|
|
|
authors: status.card.authors.map(author => ({
|
|
|
|
|
...author,
|
|
|
|
|
accountId: author.account?.id,
|
|
|
|
|
account: undefined,
|
|
|
|
|
})),
|
|
|
|
|
};
|
2024-06-13 15:04:16 +02:00
|
|
|
}
|
|
|
|
|
|
Revamp post filtering system (#18058)
* Add model for custom filter keywords
* Use CustomFilterKeyword internally
Does not change the API
* Fix /filters/edit and /filters/new
* Add migration tests
* Remove whole_word column from custom_filters (covered by custom_filter_keywords)
* Redesign /filters
Instead of a list, present a card that displays more information and handles
multiple keywords per filter.
* Redesign /filters/new and /filters/edit to add and remove keywords
This adds a new gem dependency: cocoon, as well as a npm dependency:
cocoon-js-vanilla. Those are used to easily populate and remove form fields
from the user interface when manipulating multiple keyword filters at once.
* Add /api/v2/filters to edit filter with multiple keywords
Entities:
- `Filter`: `id`, `title`, `filter_action` (either `hide` or `warn`), `context`
`keywords`
- `FilterKeyword`: `id`, `keyword`, `whole_word`
API endpoits:
- `GET /api/v2/filters` to list filters (including keywords)
- `POST /api/v2/filters` to create a new filter
`keywords_attributes` can also be passed to create keywords in one request
- `GET /api/v2/filters/:id` to read a particular filter
- `PUT /api/v2/filters/:id` to update a new filter
`keywords_attributes` can also be passed to edit, delete or add keywords in
one request
- `DELETE /api/v2/filters/:id` to delete a particular filter
- `GET /api/v2/filters/:id/keywords` to list keywords for a filter
- `POST /api/v2/filters/:filter_id/keywords/:id` to add a new keyword to a
filter
- `GET /api/v2/filter_keywords/:id` to read a particular keyword
- `PUT /api/v2/filter_keywords/:id` to edit a particular keyword
- `DELETE /api/v2/filter_keywords/:id` to delete a particular keyword
* Change from `irreversible` boolean to `action` enum
* Remove irrelevent `irreversible_must_be_within_context` check
* Fix /filters/new and /filters/edit with update for filter_action
* Fix Rubocop/Codeclimate complaining about task names
* Refactor FeedManager#phrase_filtered?
This moves regexp building and filter caching to the `CustomFilter` class.
This does not change the functional behavior yet, but this changes how the
cache is built, doing per-custom_filter regexps so that filters can be matched
independently, while still offering caching.
* Perform server-side filtering and output result in REST API
* Fix numerous filters_changed events being sent when editing multiple keywords at once
* Add some tests
* Use the new API in the WebUI
- use client-side logic for filters we have fetched rules for.
This is so that filter changes can be retroactively applied without
reloading the UI.
- use server-side logic for filters we haven't fetched rules for yet
(e.g. network error, or initial timeline loading)
* Minor optimizations and refactoring
* Perform server-side filtering on the streaming server
* Change the wording of filter action labels
* Fix issues pointed out by linter
* Change design of “Show anyway” link in accordence to review comments
* Drop “irreversible” filtering behavior
* Move /api/v2/filter_keywords to /api/v1/filters/keywords
* Rename `filter_results` attribute to `filtered`
* Rename REST::LegacyFilterSerializer to REST::V1::FilterSerializer
* Fix systemChannelId value in streaming server
* Simplify code by removing client-side filtering code
The simplifcation comes at a cost though: filters aren't retroactively
applied anymore.
2022-06-28 09:42:13 +02:00
|
|
|
if (status.filtered) {
|
|
|
|
|
normalStatus.filtered = status.filtered.map(normalizeFilterResult);
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-19 22:37:27 +01:00
|
|
|
// Only calculate these values when status first encountered and
|
|
|
|
|
// when the underlying values change. Otherwise keep the ones
|
|
|
|
|
// already in the reducer
|
|
|
|
|
if (normalOldStatus && normalOldStatus.get('content') === normalStatus.content && normalOldStatus.get('spoiler_text') === normalStatus.spoiler_text) {
|
2018-03-24 21:06:27 +09:00
|
|
|
normalStatus.search_index = normalOldStatus.get('search_index');
|
|
|
|
|
normalStatus.contentHtml = normalOldStatus.get('contentHtml');
|
|
|
|
|
normalStatus.spoilerHtml = normalOldStatus.get('spoilerHtml');
|
2021-05-11 22:21:47 +02:00
|
|
|
normalStatus.spoiler_text = normalOldStatus.get('spoiler_text');
|
2018-03-24 21:06:27 +09:00
|
|
|
normalStatus.hidden = normalOldStatus.get('hidden');
|
2023-08-12 00:06:37 +02:00
|
|
|
|
|
|
|
|
if (normalOldStatus.get('translation')) {
|
|
|
|
|
normalStatus.translation = normalOldStatus.get('translation');
|
|
|
|
|
}
|
2018-03-24 21:06:27 +09:00
|
|
|
} else {
|
2021-05-05 23:41:02 +02:00
|
|
|
// If the status has a CW but no contents, treat the CW as if it were the
|
|
|
|
|
// status' contents, to avoid having a CW toggle with seemingly no effect.
|
2025-09-17 14:00:58 +02:00
|
|
|
if (normalStatus.spoiler_text && !normalStatus.content && !normalStatus.quote) {
|
2021-05-05 23:41:02 +02:00
|
|
|
normalStatus.content = normalStatus.spoiler_text;
|
|
|
|
|
normalStatus.spoiler_text = '';
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-14 15:03:51 +09:00
|
|
|
const spoilerText = normalStatus.spoiler_text || '';
|
2021-12-28 23:25:50 +01:00
|
|
|
const searchContent = ([spoilerText, status.content].concat((status.poll && status.poll.options) ? status.poll.options.map(option => option.title) : [])).concat(status.media_attachments.map(att => att.description)).join('\n\n').replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n');
|
2018-03-24 21:06:27 +09:00
|
|
|
|
|
|
|
|
normalStatus.search_index = domParser.parseFromString(searchContent, 'text/html').documentElement.textContent;
|
2025-10-28 12:33:27 +01:00
|
|
|
normalStatus.contentHtml = normalStatus.content;
|
|
|
|
|
normalStatus.spoilerHtml = escapeTextContentForBrowser(spoilerText);
|
2018-09-24 04:44:01 +01:00
|
|
|
normalStatus.hidden = expandSpoilers ? false : spoilerText.length > 0 || normalStatus.sensitive;
|
2025-05-06 15:02:13 +02:00
|
|
|
|
2025-09-08 17:31:36 +02:00
|
|
|
// Remove quote fallback link from the DOM so it doesn't mess with paragraph margins
|
|
|
|
|
if (normalStatus.quote) {
|
|
|
|
|
normalStatus.contentHtml = stripQuoteFallback(normalStatus.contentHtml);
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-06 15:02:13 +02:00
|
|
|
if (normalStatus.url && !(normalStatus.url.startsWith('http://') || normalStatus.url.startsWith('https://'))) {
|
|
|
|
|
normalStatus.url = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
normalStatus.url ||= normalStatus.uri;
|
|
|
|
|
|
|
|
|
|
normalStatus.media_attachments.forEach(item => {
|
|
|
|
|
if (item.remote_url && !(item.remote_url.startsWith('http://') || item.remote_url.startsWith('https://')))
|
|
|
|
|
item.remote_url = null;
|
|
|
|
|
});
|
2018-03-24 21:06:27 +09:00
|
|
|
}
|
|
|
|
|
|
2023-07-25 20:29:31 +02:00
|
|
|
if (normalOldStatus) {
|
|
|
|
|
const list = normalOldStatus.get('media_attachments');
|
|
|
|
|
if (normalStatus.media_attachments && list) {
|
|
|
|
|
normalStatus.media_attachments.forEach(item => {
|
|
|
|
|
const oldItem = list.find(i => i.get('id') === item.id);
|
|
|
|
|
if (oldItem && oldItem.get('description') === item.description) {
|
2023-10-09 13:38:29 +02:00
|
|
|
item.translation = oldItem.get('translation');
|
2023-07-25 20:29:31 +02:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-24 21:06:27 +09:00
|
|
|
return normalStatus;
|
|
|
|
|
}
|
2019-03-06 03:57:46 +01:00
|
|
|
|
2023-06-01 00:10:21 +02:00
|
|
|
export function normalizeStatusTranslation(translation, status) {
|
|
|
|
|
const normalTranslation = {
|
|
|
|
|
detected_source_language: translation.detected_source_language,
|
|
|
|
|
language: translation.language,
|
|
|
|
|
provider: translation.provider,
|
2025-10-28 12:33:27 +01:00
|
|
|
contentHtml: translation.content,
|
|
|
|
|
spoilerHtml: escapeTextContentForBrowser(translation.spoiler_text),
|
2023-06-01 00:10:21 +02:00
|
|
|
spoiler_text: translation.spoiler_text,
|
|
|
|
|
};
|
|
|
|
|
|
2025-09-08 17:31:36 +02:00
|
|
|
// Remove quote fallback link from the DOM so it doesn't mess with paragraph margins
|
|
|
|
|
if (status.get('quote')) {
|
|
|
|
|
normalTranslation.contentHtml = stripQuoteFallback(normalTranslation.contentHtml);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-01 00:10:21 +02:00
|
|
|
return normalTranslation;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-23 22:00:13 +01:00
|
|
|
export function normalizeAnnouncement(announcement) {
|
|
|
|
|
const normalAnnouncement = { ...announcement };
|
|
|
|
|
|
2025-10-28 12:33:27 +01:00
|
|
|
normalAnnouncement.contentHtml = normalAnnouncement.content;
|
2020-01-23 22:00:13 +01:00
|
|
|
|
|
|
|
|
return normalAnnouncement;
|
|
|
|
|
}
|