Account archive download (#6460)
* Fix #201: Account archive download * Export actor and private key in the archive * Optimize BackupService - Add conversation to cached associations of status, because somehow it was forgotten and is source of N+1 queries - Explicitly call GC between batches of records being fetched (Model class allocations are the worst offender) - Stream media files into the tar in 1MB chunks (Do not allocate media file (up to 8MB) as string into memory) - Use #bytesize instead of #size to calculate file size for JSON (Fix FileOverflow error) - Segment media into subfolders by status ID because apparently GIF-to-MP4 media are all named "media.mp4" for some reason * Keep uniquely generated filename in Paperclip::GifTranscoder * Ensure dumped files do not overwrite each other by maintaing directory partitions * Give tar archives a good name * Add scheduler to remove week-old backups * Fix code style issue
This commit is contained in:
		
							
								
								
									
										11
									
								
								db/migrate/20180211015820_create_backups.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								db/migrate/20180211015820_create_backups.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,11 @@
 | 
			
		||||
class CreateBackups < ActiveRecord::Migration[5.1]
 | 
			
		||||
  def change
 | 
			
		||||
    create_table :backups do |t|
 | 
			
		||||
      t.references :user, foreign_key: { on_delete: :nullify }
 | 
			
		||||
      t.attachment :dump
 | 
			
		||||
      t.boolean :processed, null: false, default: false
 | 
			
		||||
 | 
			
		||||
      t.timestamps
 | 
			
		||||
    end
 | 
			
		||||
  end
 | 
			
		||||
end
 | 
			
		||||
							
								
								
									
										14
									
								
								db/schema.rb
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								db/schema.rb
									
									
									
									
									
								
							@@ -10,7 +10,7 @@
 | 
			
		||||
#
 | 
			
		||||
# It's strongly recommended that you check this file into your version control system.
 | 
			
		||||
 | 
			
		||||
ActiveRecord::Schema.define(version: 20180206000000) do
 | 
			
		||||
ActiveRecord::Schema.define(version: 20180211015820) do
 | 
			
		||||
 | 
			
		||||
  # These are extensions that must be enabled in order to support this database
 | 
			
		||||
  enable_extension "plpgsql"
 | 
			
		||||
@@ -92,6 +92,18 @@ ActiveRecord::Schema.define(version: 20180206000000) do
 | 
			
		||||
    t.index ["target_type", "target_id"], name: "index_admin_action_logs_on_target_type_and_target_id"
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  create_table "backups", force: :cascade do |t|
 | 
			
		||||
    t.bigint "user_id"
 | 
			
		||||
    t.string "dump_file_name"
 | 
			
		||||
    t.string "dump_content_type"
 | 
			
		||||
    t.integer "dump_file_size"
 | 
			
		||||
    t.datetime "dump_updated_at"
 | 
			
		||||
    t.boolean "processed", default: false, null: false
 | 
			
		||||
    t.datetime "created_at", null: false
 | 
			
		||||
    t.datetime "updated_at", null: false
 | 
			
		||||
    t.index ["user_id"], name: "index_backups_on_user_id"
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  create_table "blocks", force: :cascade do |t|
 | 
			
		||||
    t.datetime "created_at", null: false
 | 
			
		||||
    t.datetime "updated_at", null: false
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user