Changes: * Drop Users.id_to_name. * Don't cache Users.name_to_id. * Replace calls to name_to_id with find_by_name when possible. * Don't autodefine creator_name in belongs_to_creator. * Don't autodefine updater_name in belongs_to_updater. * Instead manually define creator_name / updater_name only on models that need to return these fields in the api. id_to_name was cached to reduce the impact of N+1 query patterns in certain places, especially in api responses that return creator_name / updater_name fields. But it still meant we were doing N calls to memcache. Using `includes` to prefetch users avoids this N+1 pattern. name_to_id had no need be cached, it was never used in any performance- sensitive contexts. Avoiding caching also avoids the need to keep these caches consistent.
85 lines
2.8 KiB
Plaintext
85 lines
2.8 KiB
Plaintext
<div id="c-uploads">
|
|
<div id="a-index">
|
|
<%= render "uploads/search" %>
|
|
<%= render "posts/partials/common/inline_blacklist" %>
|
|
|
|
<table width="100%" class="striped autofit">
|
|
<thead>
|
|
<tr>
|
|
<th>Upload</th>
|
|
<th>Info</th>
|
|
<th>Uploader</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @uploads.each do |upload| %>
|
|
<tr>
|
|
<td>
|
|
<%= PostPresenter.preview(upload.post, tags: "user:#{upload.uploader.name}", show_deleted: true) %>
|
|
</td>
|
|
<td class="col-expand upload-info">
|
|
<span class="info">
|
|
<strong>Upload</strong>
|
|
<%= link_to "##{upload.id}", upload %>
|
|
</span>
|
|
|
|
<span class="info">
|
|
<strong>Rating</strong>
|
|
<%= upload.rating %>
|
|
</span>
|
|
|
|
<% if upload.post.present? %>
|
|
<span class="info">
|
|
<strong>Size</strong>
|
|
<%= link_to "#{upload.post.file_size.to_s(:human_size, precision: 4)} #{upload.post.file_ext}", upload.post.file_url %>
|
|
<% if upload.post.has_dimensions? %>
|
|
(<%= upload.post.image_width %>x<%= upload.post.image_height %>)
|
|
<% end %>
|
|
</span>
|
|
<% end %>
|
|
<br>
|
|
|
|
<span class="info">
|
|
<strong>Source</strong>
|
|
<%= link_to_if (upload.source =~ %r!\Ahttps?://!i), (upload.source.presence.try(:truncate, 50) || content_tag(:em, "none")), upload.source %>
|
|
<%= link_to "»", uploads_path(search: params[:search].merge(source_matches: upload.source)) %>
|
|
</span>
|
|
<br>
|
|
|
|
<% if upload.referer_url.present? %>
|
|
<span class="info">
|
|
<strong>Referer</strong>
|
|
<%= URI.parse(upload.referer_url).host rescue nil %>
|
|
</span>
|
|
<br>
|
|
<% end %>
|
|
|
|
<span class="info">
|
|
<strong>Tags</strong>
|
|
<%= upload.presenter.inline_tag_list_html %>
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<%= link_to_user upload.uploader %>
|
|
<%= link_to "»", uploads_path(search: params[:search].merge(uploader_name: upload.uploader.name)) %>
|
|
<br><%= time_ago_in_words_tagged upload.created_at %>
|
|
</td>
|
|
<td class="col-normal">
|
|
<%= render_status(upload) %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<%= numbered_paginator(@uploads) %>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "uploads/secondary_links" %>
|
|
|
|
<% content_for(:page_title) do %>
|
|
Uploads - <%= Danbooru.config.app_name %>
|
|
<% end %>
|