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