* Change how changes to media attachments are stored for edits Fix not being able to re-order media attachments * Fix not broadcasting updates when polls/media is changed through ActivityPub * Various fixes and improvements * Update app/models/report.rb Co-authored-by: Claire <claire.github-309c@sitedethib.com> * Add tracking of media attachment description changes * Change poll in status edit to have a structure closer to the real one Co-authored-by: Claire <claire.github-309c@sitedethib.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class RSS::Serializer
 | |
|   private
 | |
| 
 | |
|   def render_statuses(builder, statuses)
 | |
|     statuses.each do |status|
 | |
|       builder.item do |item|
 | |
|         item.title(status_title(status))
 | |
|             .link(ActivityPub::TagManager.instance.url_for(status))
 | |
|             .pub_date(status.created_at)
 | |
|             .description(status.spoiler_text.presence || Formatter.instance.format(status, inline_poll_options: true).to_str)
 | |
| 
 | |
|         status.ordered_media_attachments.each do |media|
 | |
|           item.enclosure(full_asset_url(media.file.url(:original, false)), media.file.content_type, media.file.size)
 | |
|         end
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def status_title(status)
 | |
|     return "#{status.account.acct} deleted status" if status.destroyed?
 | |
| 
 | |
|     preview = status.proper.spoiler_text.presence || status.proper.text
 | |
|     if preview.length > 30 || preview[0, 30].include?("\n")
 | |
|       preview = preview[0, 30]
 | |
|       preview = preview[0, preview.index("\n").presence || 30] + '…'
 | |
|     end
 | |
| 
 | |
|     preview = "#{status.proper.spoiler_text.present? ? 'CW ' : ''}“#{preview}”#{status.proper.sensitive? ? ' (sensitive)' : ''}"
 | |
| 
 | |
|     if status.reblog?
 | |
|       "#{status.account.acct} boosted #{status.reblog.account.acct}: #{preview}"
 | |
|     else
 | |
|       "#{status.account.acct}: #{preview}"
 | |
|     end
 | |
|   end
 | |
| end
 |