diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pleroma/stats.ex | 2 | ||||
| -rw-r--r-- | lib/pleroma/user.ex | 11 | ||||
| -rw-r--r-- | lib/pleroma/web/activity_pub/views/object_view.ex | 2 | ||||
| -rw-r--r-- | lib/pleroma/web/common_api/common_api.ex | 9 | ||||
| -rw-r--r-- | lib/pleroma/web/mastodon_api/mastodon_api_controller.ex | 1 | 
5 files changed, 19 insertions, 6 deletions
| diff --git a/lib/pleroma/stats.ex b/lib/pleroma/stats.ex index 65a6d58b5..b3566ceb6 100644 --- a/lib/pleroma/stats.ex +++ b/lib/pleroma/stats.ex @@ -46,7 +46,7 @@ defmodule Pleroma.Stats do        from(u in User.local_user_query(), select: fragment("sum((?->>'note_count')::int)", u.info))      status_count = Repo.one(status_query) -    user_count = Repo.aggregate(User.local_user_query(), :count, :id) +    user_count = Repo.aggregate(User.active_local_user_query(), :count, :id)      Agent.update(__MODULE__, fn _ ->        {peers, %{domain_count: domain_count, status_count: status_count, user_count: user_count}} diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex index 2dc3c8d56..1db1c53cb 100644 --- a/lib/pleroma/user.ex +++ b/lib/pleroma/user.ex @@ -795,7 +795,7 @@ defmodule Pleroma.User do      update_and_set_cache(cng)    end -  def local_user_query() do +  def local_user_query do      from(        u in User,        where: u.local == true, @@ -803,7 +803,14 @@ defmodule Pleroma.User do      )    end -  def moderator_user_query() do +  def active_local_user_query do +    from( +      u in local_user_query(), +      where: fragment("?->'deactivated' @> 'false'", u.info) +    ) +  end + +  def moderator_user_query do      from(        u in User,        where: u.local == true, diff --git a/lib/pleroma/web/activity_pub/views/object_view.ex b/lib/pleroma/web/activity_pub/views/object_view.ex index 193042056..394d82fbc 100644 --- a/lib/pleroma/web/activity_pub/views/object_view.ex +++ b/lib/pleroma/web/activity_pub/views/object_view.ex @@ -46,7 +46,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectView do        "id" => "#{ap_id}/likes",        "type" => "OrderedCollection",        "totalItems" => length(likes), -      "first" => collection(likes, "#{ap_id}/followers", 1) +      "first" => collection(likes, "#{ap_id}/likes", 1)      }      |> Map.merge(Pleroma.Web.ActivityPub.Utils.make_json_ld_header())    end diff --git a/lib/pleroma/web/common_api/common_api.ex b/lib/pleroma/web/common_api/common_api.ex index 2902905fd..504670439 100644 --- a/lib/pleroma/web/common_api/common_api.ex +++ b/lib/pleroma/web/common_api/common_api.ex @@ -103,7 +103,14 @@ defmodule Pleroma.Web.CommonAPI do               attachments,               tags,               get_content_type(data["content_type"]), -             Enum.member?([true, "true"], data["no_attachment_links"]) +             Enum.member?( +               [true, "true"], +               Map.get( +                 data, +                 "no_attachment_links", +                 Pleroma.Config.get([:instance, :no_attachment_links], false) +               ) +             )             ),           context <- make_context(inReplyTo),           cw <- data["spoiler_text"], diff --git a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex index a8fe9d708..daad89185 100644 --- a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex +++ b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex @@ -341,7 +341,6 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do      params =        params        |> Map.put("in_reply_to_status_id", params["in_reply_to_id"]) -      |> Map.put("no_attachment_links", true)      idempotency_key =        case get_req_header(conn, "idempotency-key") do | 
