mirror of
https://github.com/mastodon/mastodon.git
synced 2025-11-27 18:10:58 +00:00
Compare commits
6 Commits
f4a66a4fc5
...
fd859019b4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fd859019b4 | ||
|
|
199376a080 | ||
|
|
e126cfc76d | ||
|
|
322a4fee53 | ||
|
|
be2caba527 | ||
|
|
0095bc85bf |
|
|
@ -324,7 +324,7 @@ GEM
|
|||
rainbow (>= 2.0.0)
|
||||
i18n (1.14.7)
|
||||
concurrent-ruby (~> 1.0)
|
||||
i18n-tasks (1.1.1)
|
||||
i18n-tasks (1.1.2)
|
||||
activesupport (>= 4.0.2)
|
||||
ast (>= 2.1.0)
|
||||
erubi
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
<p align="center">
|
||||
<a style="text-decoration:none" href="https://www.youtube.com/watch?v=IPSbNdBmWKE">
|
||||
<img alt="Mastodon hero image" src="https://github.com/user-attachments/assets/ef53f5e9-c0d8-484d-9f53-00efdebb92c3" />
|
||||
<img alt="Mastodon hero image" src="https://github.com/user-attachments/assets/7f171473-dc7a-4610-8489-d4abc42dad9d" />
|
||||
</a>
|
||||
</p>
|
||||
|
||||
|
|
|
|||
|
|
@ -136,7 +136,7 @@ export default class ModalRoot extends PureComponent {
|
|||
<Base backgroundColor={backgroundColor} onClose={this.handleClose} ignoreFocus={ignoreFocus}>
|
||||
{visible && (
|
||||
<>
|
||||
<BundleContainer fetchComponent={MODAL_COMPONENTS[type]} loading={this.renderLoading} error={this.renderError} renderDelay={200}>
|
||||
<BundleContainer key={type} fetchComponent={MODAL_COMPONENTS[type]} loading={this.renderLoading} error={this.renderError} renderDelay={200}>
|
||||
{(SpecificComponent) => {
|
||||
return <SpecificComponent {...props} onChangeBackgroundColor={this.setBackgroundColor} onClose={this.handleClose} ref={this.setModalRef} />;
|
||||
}}
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ class BackupService < BaseService
|
|||
dump_actor!(zipfile)
|
||||
end
|
||||
|
||||
archive_filename = "#{['archive', Time.now.utc.strftime('%Y%m%d%H%M%S'), SecureRandom.hex(16)].join('-')}.zip"
|
||||
archive_filename = "#{['archive', Time.current.to_fs(:number), SecureRandom.hex(16)].join('-')}.zip"
|
||||
|
||||
@backup.dump = ActionDispatch::Http::UploadedFile.new(tempfile: tmp_file, filename: archive_filename)
|
||||
@backup.processed = true
|
||||
|
|
|
|||
31
app/services/create_collection_service.rb
Normal file
31
app/services/create_collection_service.rb
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class CreateCollectionService
|
||||
def call(params, account)
|
||||
tag = params.delete(:tag)
|
||||
account_ids = params.delete(:account_ids)
|
||||
@collection = Collection.new(params.merge({ account:, local: true, tag: find_or_create_tag(tag) }))
|
||||
build_items(account_ids)
|
||||
|
||||
@collection.save!
|
||||
@collection
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def find_or_create_tag(name)
|
||||
return nil if name.blank?
|
||||
|
||||
Tag.find_or_create_by_names(name).first
|
||||
end
|
||||
|
||||
def build_items(account_ids)
|
||||
return if account_ids.blank?
|
||||
|
||||
account_ids.each do |account_id|
|
||||
account = Account.find(account_id)
|
||||
# TODO: validate preferences
|
||||
@collection.collection_items.build(account:)
|
||||
end
|
||||
end
|
||||
end
|
||||
82
spec/services/create_collection_service_spec.rb
Normal file
82
spec/services/create_collection_service_spec.rb
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe CreateCollectionService do
|
||||
subject { described_class.new }
|
||||
|
||||
let(:author) { Fabricate.create(:account) }
|
||||
|
||||
describe '#call' do
|
||||
let(:base_params) do
|
||||
{
|
||||
name: 'People to follow',
|
||||
description: 'All my favourites',
|
||||
sensitive: false,
|
||||
discoverable: true,
|
||||
}
|
||||
end
|
||||
|
||||
context 'when given valid parameters' do
|
||||
it 'creates a new local collection' do
|
||||
collection = nil
|
||||
|
||||
expect do
|
||||
collection = subject.call(base_params, author)
|
||||
end.to change(Collection, :count).by(1)
|
||||
|
||||
expect(collection).to be_a(Collection)
|
||||
expect(collection).to be_local
|
||||
end
|
||||
|
||||
context 'when given account ids' do
|
||||
let(:account_ids) do
|
||||
Fabricate.times(2, :account).map { |a| a.id.to_s }
|
||||
end
|
||||
let(:params) do
|
||||
base_params.merge(account_ids:)
|
||||
end
|
||||
|
||||
it 'also creates collection items' do
|
||||
expect do
|
||||
subject.call(params, author)
|
||||
end.to change(CollectionItem, :count).by(2)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when given a tag' do
|
||||
let(:params) { base_params.merge(tag: '#people') }
|
||||
|
||||
context 'when the tag exists' do
|
||||
let!(:tag) { Fabricate.create(:tag, name: 'people') }
|
||||
|
||||
it 'correctly assigns the existing tag' do
|
||||
collection = subject.call(params, author)
|
||||
|
||||
expect(collection.tag).to eq tag
|
||||
end
|
||||
end
|
||||
|
||||
context 'when the tag does not exist' do
|
||||
it 'creates a new tag' do
|
||||
collection = nil
|
||||
|
||||
expect do
|
||||
collection = subject.call(params, author)
|
||||
end.to change(Tag, :count).by(1)
|
||||
|
||||
expect(collection.tag.name).to eq 'people'
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'when given invalid parameters' do
|
||||
it 'raises an exception' do
|
||||
expect do
|
||||
subject.call({}, author)
|
||||
end.to raise_error(ActiveRecord::RecordInvalid)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Reference in New Issue
Block a user