Pleroma/lib/pleroma/web/metadata/providers/restrict_indexing.ex

25 lines
593 B
Elixir
Raw Normal View History

2020-04-01 08:55:05 +02:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
2020-04-01 08:55:05 +02:00
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.Metadata.Providers.RestrictIndexing do
@behaviour Pleroma.Web.Metadata.Providers.Provider
@moduledoc """
Restricts indexing of remote and/or non-discoverable users.
2020-04-01 08:55:05 +02:00
"""
@impl true
def build_tags(%{user: %{local: true, is_discoverable: true}}), do: []
def build_tags(_) do
2020-04-01 08:55:05 +02:00
[
{:meta,
[
name: "robots",
content: "noindex, noarchive"
], []}
]
end
end