mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
73 lines
2.1 KiB
Elixir
73 lines
2.1 KiB
Elixir
defmodule PhilomenaWeb.Image.SourceController do
|
|
use PhilomenaWeb, :controller
|
|
|
|
alias Philomena.SourceChanges.SourceChange
|
|
alias Philomena.UserStatistics
|
|
alias Philomena.Images.Image
|
|
alias Philomena.Images
|
|
alias Philomena.Repo
|
|
import Ecto.Query
|
|
|
|
plug PhilomenaWeb.LimitPlug,
|
|
[time: 5, error: "You may only update metadata once every 5 seconds."]
|
|
when action in [:update]
|
|
|
|
plug PhilomenaWeb.FilterBannedUsersPlug
|
|
plug PhilomenaWeb.CaptchaPlug
|
|
plug PhilomenaWeb.UserAttributionPlug
|
|
plug PhilomenaWeb.CanaryMapPlug, update: :edit_metadata
|
|
plug :load_and_authorize_resource, model: Image, id_name: "image_id", preload: [:tags, :user]
|
|
|
|
def update(conn, %{"image" => image_params}) do
|
|
attributes = conn.assigns.attributes
|
|
image = conn.assigns.image
|
|
old_source = image.source_url
|
|
|
|
case Images.update_source(image, attributes, image_params) do
|
|
{:ok, %{image: image}} ->
|
|
PhilomenaWeb.Endpoint.broadcast!(
|
|
"firehose",
|
|
"image:source_update",
|
|
%{image_id: image.id, added: [image.source_url], removed: [old_source]}
|
|
)
|
|
|
|
PhilomenaWeb.Endpoint.broadcast!(
|
|
"firehose",
|
|
"image:update",
|
|
PhilomenaWeb.Api.Json.ImageView.render("show.json", %{image: image, interactions: []})
|
|
)
|
|
|
|
changeset = Images.change_image(image)
|
|
|
|
source_change_count =
|
|
SourceChange
|
|
|> where(image_id: ^image.id)
|
|
|> Repo.aggregate(:count, :id)
|
|
|
|
if old_source != image.source_url do
|
|
UserStatistics.inc_stat(conn.assigns.current_user, :metadata_updates)
|
|
end
|
|
|
|
Images.reindex_image(image)
|
|
|
|
conn
|
|
|> put_view(PhilomenaWeb.ImageView)
|
|
|> render("_source.html",
|
|
layout: false,
|
|
source_change_count: source_change_count,
|
|
image: image,
|
|
changeset: changeset
|
|
)
|
|
|
|
{:error, :image, changeset, _} ->
|
|
conn
|
|
|> put_view(PhilomenaWeb.ImageView)
|
|
|> render("_source.html",
|
|
layout: false,
|
|
source_change_count: 0,
|
|
image: image,
|
|
changeset: changeset
|
|
)
|
|
end
|
|
end
|
|
end
|