about summary refs log tree commit diff
path: root/app/models
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-09-10 13:48:48 +0200
committermultiple creatures <dev@multiple-creature.party>2020-02-21 03:54:18 -0600
commit68456c90ce53b5a9852d30ea83d28e14b8c0bac0 (patch)
tree22d2b96ddeaec8bdebed68496b817a02ec14087e /app/models
parent2d70dc36ffbd72dc533e2b2b1990909fda875f35 (diff)
port tootsuite#11776 to monsterfork: Change tootctl to use inline parallelization instead of Sidekiq
- Remove --background option
- Add --concurrency(=5) option
- Add progress bars
Diffstat (limited to 'app/models')
-rw-r--r--app/models/media_attachment.rb1
-rw-r--r--app/models/preview_card.rb2
2 files changed, 3 insertions, 0 deletions
diff --git a/app/models/media_attachment.rb b/app/models/media_attachment.rb
index 747836b59..3df69ea66 100644
--- a/app/models/media_attachment.rb
+++ b/app/models/media_attachment.rb
@@ -146,6 +146,7 @@ class MediaAttachment < ApplicationRecord
   scope :unattached, -> { where(status_id: nil, scheduled_status_id: nil) }
   scope :local,      -> { where(remote_url: '') }
   scope :remote,     -> { where.not(remote_url: '') }
+  scope :cached,     -> { remote.where.not(file_file_name: nil) }
 
   default_scope { order(id: :asc) }
 
diff --git a/app/models/preview_card.rb b/app/models/preview_card.rb
index a792b352b..9d6c1938a 100644
--- a/app/models/preview_card.rb
+++ b/app/models/preview_card.rb
@@ -43,6 +43,8 @@ class PreviewCard < ApplicationRecord
   validates_attachment_size :image, less_than: LIMIT
   remotable_attachment :image, LIMIT
 
+  scope :cached, -> { where.not(image_file_name: [nil, '']) }
+
   before_save :extract_dimensions, if: :link?
 
   def save_with_optional_image!