mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-13 07:48:15 +00:00
Compare commits
6 Commits
4a07c28cf2
...
5c85bbe69a
Author | SHA1 | Date | |
---|---|---|---|
![]() |
5c85bbe69a | ||
![]() |
3b52dca405 | ||
![]() |
853a0c466e | ||
![]() |
b534854505 | ||
![]() |
d9eb7bb09a | ||
![]() |
8e634b9df4 |
|
@ -538,7 +538,7 @@ and provided thanks to the work of the following contributors:
|
||||||
* [Drew Schuster](mailto:dtschust@gmail.com)
|
* [Drew Schuster](mailto:dtschust@gmail.com)
|
||||||
* [Dryusdan](mailto:dryusdan@dryusdan.fr)
|
* [Dryusdan](mailto:dryusdan@dryusdan.fr)
|
||||||
* [Eai](mailto:eai@mizle.net)
|
* [Eai](mailto:eai@mizle.net)
|
||||||
* [Eashwar Ranganathan](mailto:eranganathan@lyft.com)
|
* [Eashwar Ranganathan](mailto:eashwar@eashwar.com)
|
||||||
* [Ed Knutson](mailto:knutsoned@gmail.com)
|
* [Ed Knutson](mailto:knutsoned@gmail.com)
|
||||||
* [Elizabeth Martín Campos](mailto:me@elizabeth.sh)
|
* [Elizabeth Martín Campos](mailto:me@elizabeth.sh)
|
||||||
* [Elizabeth Myers](mailto:elizabeth@interlinked.me)
|
* [Elizabeth Myers](mailto:elizabeth@interlinked.me)
|
||||||
|
|
|
@ -26,6 +26,12 @@ module ContextHelper
|
||||||
suspended: { 'toot' => 'http://joinmastodon.org/ns#', 'suspended' => 'toot:suspended' },
|
suspended: { 'toot' => 'http://joinmastodon.org/ns#', 'suspended' => 'toot:suspended' },
|
||||||
attribution_domains: { 'toot' => 'http://joinmastodon.org/ns#', 'attributionDomains' => { '@id' => 'toot:attributionDomains', '@type' => '@id' } },
|
attribution_domains: { 'toot' => 'http://joinmastodon.org/ns#', 'attributionDomains' => { '@id' => 'toot:attributionDomains', '@type' => '@id' } },
|
||||||
quote_requests: { 'QuoteRequest' => 'https://w3id.org/fep/044f#QuoteRequest' },
|
quote_requests: { 'QuoteRequest' => 'https://w3id.org/fep/044f#QuoteRequest' },
|
||||||
|
quotes: {
|
||||||
|
'quote' => 'https://w3id.org/fep/044f#quote',
|
||||||
|
'quoteUri' => 'http://fedibird.com/ns#quoteUri',
|
||||||
|
'_misskey_quote' => 'https://misskey-hub.net/ns#_misskey_quote',
|
||||||
|
'quoteAuthorization' => 'https://w3id.org/fep/044f#quoteAuthorization',
|
||||||
|
},
|
||||||
interaction_policies: {
|
interaction_policies: {
|
||||||
'gts' => 'https://gotosocial.org/ns#',
|
'gts' => 'https://gotosocial.org/ns#',
|
||||||
'interactionPolicy' => { '@id' => 'gts:interactionPolicy', '@type' => '@id' },
|
'interactionPolicy' => { '@id' => 'gts:interactionPolicy', '@type' => '@id' },
|
||||||
|
|
|
@ -1,12 +1,30 @@
|
||||||
|
import { useCallback } from 'react';
|
||||||
|
|
||||||
import { useLinks } from 'mastodon/hooks/useLinks';
|
import { useLinks } from 'mastodon/hooks/useLinks';
|
||||||
|
|
||||||
export const AccountBio: React.FC<{
|
interface AccountBioProps {
|
||||||
note: string;
|
note: string;
|
||||||
className: string;
|
className: string;
|
||||||
}> = ({ note, className }) => {
|
dropdownAccountId?: string;
|
||||||
const handleClick = useLinks();
|
}
|
||||||
|
|
||||||
if (note.length === 0 || note === '<p></p>') {
|
export const AccountBio: React.FC<AccountBioProps> = ({
|
||||||
|
note,
|
||||||
|
className,
|
||||||
|
dropdownAccountId,
|
||||||
|
}) => {
|
||||||
|
const handleClick = useLinks(!!dropdownAccountId);
|
||||||
|
const handleNodeChange = useCallback(
|
||||||
|
(node: HTMLDivElement | null) => {
|
||||||
|
if (!dropdownAccountId || !node || node.childNodes.length === 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
addDropdownToHashtags(node, dropdownAccountId);
|
||||||
|
},
|
||||||
|
[dropdownAccountId],
|
||||||
|
);
|
||||||
|
|
||||||
|
if (note.length === 0) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,6 +33,28 @@ export const AccountBio: React.FC<{
|
||||||
className={`${className} translate`}
|
className={`${className} translate`}
|
||||||
dangerouslySetInnerHTML={{ __html: note }}
|
dangerouslySetInnerHTML={{ __html: note }}
|
||||||
onClickCapture={handleClick}
|
onClickCapture={handleClick}
|
||||||
|
ref={handleNodeChange}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function addDropdownToHashtags(node: HTMLElement | null, accountId: string) {
|
||||||
|
if (!node) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for (const childNode of node.childNodes) {
|
||||||
|
if (!(childNode instanceof HTMLElement)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (
|
||||||
|
childNode instanceof HTMLAnchorElement &&
|
||||||
|
(childNode.classList.contains('hashtag') ||
|
||||||
|
childNode.innerText.startsWith('#')) &&
|
||||||
|
!childNode.dataset.menuHashtag
|
||||||
|
) {
|
||||||
|
childNode.dataset.menuHashtag = accountId;
|
||||||
|
} else if (childNode.childNodes.length > 0) {
|
||||||
|
addDropdownToHashtags(childNode, accountId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@ import classNames from 'classnames';
|
||||||
import { Helmet } from 'react-helmet';
|
import { Helmet } from 'react-helmet';
|
||||||
import { NavLink } from 'react-router-dom';
|
import { NavLink } from 'react-router-dom';
|
||||||
|
|
||||||
|
import { AccountBio } from '@/mastodon/components/account_bio';
|
||||||
import CheckIcon from '@/material-icons/400-24px/check.svg?react';
|
import CheckIcon from '@/material-icons/400-24px/check.svg?react';
|
||||||
import LockIcon from '@/material-icons/400-24px/lock.svg?react';
|
import LockIcon from '@/material-icons/400-24px/lock.svg?react';
|
||||||
import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
|
import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
|
||||||
|
@ -773,7 +774,6 @@ export const AccountHeader: React.FC<{
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const content = { __html: account.note_emojified };
|
|
||||||
const displayNameHtml = { __html: account.display_name_html };
|
const displayNameHtml = { __html: account.display_name_html };
|
||||||
const fields = account.fields;
|
const fields = account.fields;
|
||||||
const isLocal = !account.acct.includes('@');
|
const isLocal = !account.acct.includes('@');
|
||||||
|
@ -897,12 +897,11 @@ export const AccountHeader: React.FC<{
|
||||||
<AccountNote accountId={accountId} />
|
<AccountNote accountId={accountId} />
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{account.note.length > 0 && account.note !== '<p></p>' && (
|
<AccountBio
|
||||||
<div
|
note={account.note_emojified}
|
||||||
className='account__header__content translate'
|
dropdownAccountId={accountId}
|
||||||
dangerouslySetInnerHTML={content}
|
className='account__header__content'
|
||||||
/>
|
/>
|
||||||
)}
|
|
||||||
|
|
||||||
<div className='account__header__fields'>
|
<div className='account__header__fields'>
|
||||||
<dl>
|
<dl>
|
||||||
|
|
|
@ -8,13 +8,14 @@ import { openURL } from 'mastodon/actions/search';
|
||||||
import { useAppDispatch } from 'mastodon/store';
|
import { useAppDispatch } from 'mastodon/store';
|
||||||
|
|
||||||
const isMentionClick = (element: HTMLAnchorElement) =>
|
const isMentionClick = (element: HTMLAnchorElement) =>
|
||||||
element.classList.contains('mention');
|
element.classList.contains('mention') &&
|
||||||
|
!element.classList.contains('hashtag');
|
||||||
|
|
||||||
const isHashtagClick = (element: HTMLAnchorElement) =>
|
const isHashtagClick = (element: HTMLAnchorElement) =>
|
||||||
element.textContent?.[0] === '#' ||
|
element.textContent?.[0] === '#' ||
|
||||||
element.previousSibling?.textContent?.endsWith('#');
|
element.previousSibling?.textContent?.endsWith('#');
|
||||||
|
|
||||||
export const useLinks = () => {
|
export const useLinks = (skipHashtags?: boolean) => {
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
const dispatch = useAppDispatch();
|
const dispatch = useAppDispatch();
|
||||||
|
|
||||||
|
@ -61,12 +62,12 @@ export const useLinks = () => {
|
||||||
if (isMentionClick(target)) {
|
if (isMentionClick(target)) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
void handleMentionClick(target);
|
void handleMentionClick(target);
|
||||||
} else if (isHashtagClick(target)) {
|
} else if (isHashtagClick(target) && !skipHashtags) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
handleHashtagClick(target);
|
handleHashtagClick(target);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[handleMentionClick, handleHashtagClick],
|
[skipHashtags, handleMentionClick, handleHashtagClick],
|
||||||
);
|
);
|
||||||
|
|
||||||
return handleClick;
|
return handleClick;
|
||||||
|
|
|
@ -126,6 +126,9 @@ export function createAccountFromServerJSON(serverJSON: ApiAccountJSON) {
|
||||||
? accountJSON.username
|
? accountJSON.username
|
||||||
: accountJSON.display_name;
|
: accountJSON.display_name;
|
||||||
|
|
||||||
|
const accountNote =
|
||||||
|
accountJSON.note && accountJSON.note !== '<p></p>' ? accountJSON.note : '';
|
||||||
|
|
||||||
return AccountFactory({
|
return AccountFactory({
|
||||||
...accountJSON,
|
...accountJSON,
|
||||||
moved: moved?.id,
|
moved: moved?.id,
|
||||||
|
@ -142,8 +145,8 @@ export function createAccountFromServerJSON(serverJSON: ApiAccountJSON) {
|
||||||
escapeTextContentForBrowser(displayName),
|
escapeTextContentForBrowser(displayName),
|
||||||
emojiMap,
|
emojiMap,
|
||||||
),
|
),
|
||||||
note_emojified: emojify(accountJSON.note, emojiMap),
|
note_emojified: emojify(accountNote, emojiMap),
|
||||||
note_plain: unescapeHTML(accountJSON.note),
|
note_plain: unescapeHTML(accountNote),
|
||||||
url:
|
url:
|
||||||
accountJSON.url.startsWith('http://') ||
|
accountJSON.url.startsWith('http://') ||
|
||||||
accountJSON.url.startsWith('https://')
|
accountJSON.url.startsWith('https://')
|
||||||
|
|
|
@ -5,9 +5,33 @@ require_relative 'base'
|
||||||
|
|
||||||
module Mastodon::CLI
|
module Mastodon::CLI
|
||||||
class EmailDomainBlocks < Base
|
class EmailDomainBlocks < Base
|
||||||
|
option :only_blocked, type: :boolean, defaut: false
|
||||||
|
option :only_with_approval, type: :boolean, default: false
|
||||||
desc 'list', 'List blocked e-mail domains'
|
desc 'list', 'List blocked e-mail domains'
|
||||||
|
long_desc <<-LONG_DESC
|
||||||
|
By default this command lists all domains in the email domain block list
|
||||||
|
and their associated MX records (if included).
|
||||||
|
|
||||||
|
If the --only-blocked option is provided, this command will list only email
|
||||||
|
domains that are fully blocked from signup.
|
||||||
|
|
||||||
|
If the --only-with-approval option is provided, this command will list only
|
||||||
|
email domains that are allowed to be used but require manual approval.
|
||||||
|
|
||||||
|
The --only-blocked and --only-with-approval options are mutually exclusive.
|
||||||
|
LONG_DESC
|
||||||
def list
|
def list
|
||||||
EmailDomainBlock.parents.find_each do |parent|
|
fail_with_message 'Cannot specify both --only-blocked and --only-with-approval' if options[:only_blocked] && options[:only_with_approval]
|
||||||
|
|
||||||
|
base_query = EmailDomainBlock.parents
|
||||||
|
|
||||||
|
if options[:only_blocked]
|
||||||
|
base_query = base_query.where(allow_with_approval: false)
|
||||||
|
elsif options[:only_with_approval]
|
||||||
|
base_query = base_query.where(allow_with_approval: true)
|
||||||
|
end
|
||||||
|
|
||||||
|
base_query.find_each do |parent|
|
||||||
say(parent.domain.to_s, :white)
|
say(parent.domain.to_s, :white)
|
||||||
|
|
||||||
shell.indent do
|
shell.indent do
|
||||||
|
@ -19,6 +43,7 @@ module Mastodon::CLI
|
||||||
end
|
end
|
||||||
|
|
||||||
option :with_dns_records, type: :boolean
|
option :with_dns_records, type: :boolean
|
||||||
|
option :allow_with_approval, type: :boolean, defaut: false
|
||||||
desc 'add DOMAIN...', 'Block e-mail domain(s)'
|
desc 'add DOMAIN...', 'Block e-mail domain(s)'
|
||||||
long_desc <<-LONG_DESC
|
long_desc <<-LONG_DESC
|
||||||
Blocking an e-mail domain prevents users from signing up
|
Blocking an e-mail domain prevents users from signing up
|
||||||
|
@ -30,6 +55,9 @@ module Mastodon::CLI
|
||||||
This can be helpful if you are blocking an e-mail server that has many
|
This can be helpful if you are blocking an e-mail server that has many
|
||||||
different domains pointing to it as it allows you to essentially block
|
different domains pointing to it as it allows you to essentially block
|
||||||
it at the root.
|
it at the root.
|
||||||
|
|
||||||
|
When the --allow-with-approval option is set, the email domains provided will
|
||||||
|
have to be manually approved for signup.
|
||||||
LONG_DESC
|
LONG_DESC
|
||||||
def add(*domains)
|
def add(*domains)
|
||||||
fail_with_message 'No domain(s) given' if domains.empty?
|
fail_with_message 'No domain(s) given' if domains.empty?
|
||||||
|
@ -47,19 +75,18 @@ module Mastodon::CLI
|
||||||
other_domains = []
|
other_domains = []
|
||||||
other_domains = DomainResource.new(domain).mx if options[:with_dns_records]
|
other_domains = DomainResource.new(domain).mx if options[:with_dns_records]
|
||||||
|
|
||||||
email_domain_block = EmailDomainBlock.new(domain: domain, other_domains: other_domains)
|
email_domain_block = EmailDomainBlock.new(domain: domain, other_domains: other_domains, allow_with_approval: options[:allow_with_approval])
|
||||||
email_domain_block.save!
|
email_domain_block.save!
|
||||||
processed += 1
|
processed += 1
|
||||||
|
|
||||||
(email_domain_block.other_domains || []).uniq.each do |hostname|
|
(email_domain_block.other_domains || []).uniq.each do |hostname|
|
||||||
another_email_domain_block = EmailDomainBlock.new(domain: hostname, parent: email_domain_block)
|
|
||||||
|
|
||||||
if EmailDomainBlock.exists?(domain: hostname)
|
if EmailDomainBlock.exists?(domain: hostname)
|
||||||
say("#{hostname} is already blocked.", :yellow)
|
say("#{hostname} is already blocked.", :yellow)
|
||||||
skipped += 1
|
skipped += 1
|
||||||
next
|
next
|
||||||
end
|
end
|
||||||
|
|
||||||
|
another_email_domain_block = EmailDomainBlock.new(domain: hostname, parent: email_domain_block, allow_with_approval: options[:allow_with_approval])
|
||||||
another_email_domain_block.save!
|
another_email_domain_block.save!
|
||||||
processed += 1
|
processed += 1
|
||||||
end
|
end
|
||||||
|
|
|
@ -15,17 +15,62 @@ RSpec.describe Mastodon::CLI::EmailDomainBlocks do
|
||||||
describe '#list' do
|
describe '#list' do
|
||||||
let(:action) { :list }
|
let(:action) { :list }
|
||||||
|
|
||||||
|
context 'with both --only-blocked and --only-with-approval' do
|
||||||
|
let(:options) { { only_blocked: true, only_with_approval: true } }
|
||||||
|
|
||||||
|
it 'warns about usage and exits' do
|
||||||
|
expect { subject }
|
||||||
|
.to raise_error(Thor::Error, 'Cannot specify both --only-blocked and --only-with-approval')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context 'with email domain block records' do
|
context 'with email domain block records' do
|
||||||
let!(:parent_block) { Fabricate(:email_domain_block) }
|
let!(:parent_block) { Fabricate(:email_domain_block) }
|
||||||
let!(:child_block) { Fabricate(:email_domain_block, parent: parent_block) }
|
let!(:child_block) { Fabricate(:email_domain_block, parent: parent_block) }
|
||||||
|
let!(:parent_allow_block) { Fabricate(:email_domain_block, allow_with_approval: true) }
|
||||||
|
let!(:child_allow_block) { Fabricate(:email_domain_block, parent: parent_allow_block, allow_with_approval: true) }
|
||||||
|
|
||||||
it 'lists the blocks' do
|
it 'lists all the blocks by default' do
|
||||||
expect { subject }
|
expect { subject }
|
||||||
.to output_results(
|
.to output_results(
|
||||||
parent_block.domain,
|
parent_block.domain,
|
||||||
child_block.domain
|
child_block.domain,
|
||||||
|
parent_allow_block.domain,
|
||||||
|
child_allow_block.domain
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context 'with the --only-blocked flag set' do
|
||||||
|
let(:options) { { only_blocked: true } }
|
||||||
|
|
||||||
|
it 'lists only blocked domains' do
|
||||||
|
expect { subject }
|
||||||
|
.to output_results(
|
||||||
|
parent_block.domain,
|
||||||
|
child_block.domain
|
||||||
|
)
|
||||||
|
.and not_output_results(
|
||||||
|
parent_allow_block.domain,
|
||||||
|
child_allow_block.domain
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'with the --only-with-approval flag set' do
|
||||||
|
let(:options) { { only_with_approval: true } }
|
||||||
|
|
||||||
|
it 'lists only manually approvable domains' do
|
||||||
|
expect { subject }
|
||||||
|
.to output_results(
|
||||||
|
parent_allow_block.domain,
|
||||||
|
child_allow_block.domain
|
||||||
|
)
|
||||||
|
.and not_output_results(
|
||||||
|
parent_block.domain,
|
||||||
|
child_block.domain
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -56,6 +101,7 @@ RSpec.describe Mastodon::CLI::EmailDomainBlocks do
|
||||||
context 'when no blocks exist' do
|
context 'when no blocks exist' do
|
||||||
let(:domain) { 'host.example' }
|
let(:domain) { 'host.example' }
|
||||||
let(:arguments) { [domain] }
|
let(:arguments) { [domain] }
|
||||||
|
let(:options) { { allow_with_approval: false } }
|
||||||
|
|
||||||
it 'adds a new block' do
|
it 'adds a new block' do
|
||||||
expect { subject }
|
expect { subject }
|
||||||
|
@ -67,7 +113,7 @@ RSpec.describe Mastodon::CLI::EmailDomainBlocks do
|
||||||
context 'with --with-dns-records true' do
|
context 'with --with-dns-records true' do
|
||||||
let(:domain) { 'host.example' }
|
let(:domain) { 'host.example' }
|
||||||
let(:arguments) { [domain] }
|
let(:arguments) { [domain] }
|
||||||
let(:options) { { with_dns_records: true } }
|
let(:options) { { allow_with_approval: false, with_dns_records: true } }
|
||||||
|
|
||||||
before do
|
before do
|
||||||
configure_mx(domain: domain, exchange: 'other.host')
|
configure_mx(domain: domain, exchange: 'other.host')
|
||||||
|
|
|
@ -7,3 +7,5 @@ module CommandLineHelpers
|
||||||
).to_stdout
|
).to_stdout
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
RSpec::Matchers.define_negated_matcher :not_output_results, :output_results
|
||||||
|
|
Loading…
Reference in New Issue
Block a user