never display opted-out instances anywhere
This commit is contained in:
parent
62bb309df7
commit
76ebf50c40
|
@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Fixed some instances being duplicated (due to un-normalized data).
|
- Fixed some instances being duplicated (due to un-normalized data).
|
||||||
- Fixed mobile instance view erroring for uncrawled instances.
|
- Fixed mobile instance view erroring for uncrawled instances.
|
||||||
- Improved error handling in admin login page.
|
- Improved error handling in admin login page.
|
||||||
|
- Instances that opt-out will no longer show up in search results ever, nor are they accessible through the API.
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
||||||
|
|
|
@ -6,10 +6,16 @@ defmodule Backend.Api do
|
||||||
@spec get_instance!(String.t()) :: Instance.t()
|
@spec get_instance!(String.t()) :: Instance.t()
|
||||||
def get_instance!(domain) do
|
def get_instance!(domain) do
|
||||||
Instance
|
Instance
|
||||||
|> preload(:peers)
|
|
||||||
|> Repo.get_by!(domain: domain)
|
|> Repo.get_by!(domain: domain)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@spec get_instance_with_peers(String.t()) :: Instance.t() | nil
|
||||||
|
def get_instance_with_peers(domain) do
|
||||||
|
Instance
|
||||||
|
|> preload(:peers)
|
||||||
|
|> Repo.get_by(domain: domain)
|
||||||
|
end
|
||||||
|
|
||||||
def update_instance(instance) do
|
def update_instance(instance) do
|
||||||
Repo.insert(
|
Repo.insert(
|
||||||
instance,
|
instance,
|
||||||
|
@ -111,6 +117,11 @@ defmodule Backend.Api do
|
||||||
"size" => page_size,
|
"size" => page_size,
|
||||||
"query" => %{
|
"query" => %{
|
||||||
"bool" => %{
|
"bool" => %{
|
||||||
|
"filter" => %{
|
||||||
|
"term" => %{
|
||||||
|
"opt_out" => "false"
|
||||||
|
}
|
||||||
|
},
|
||||||
"should" => [
|
"should" => [
|
||||||
%{
|
%{
|
||||||
"multi_match" => %{
|
"multi_match" => %{
|
||||||
|
|
|
@ -129,7 +129,7 @@ defmodule Backend.Crawler do
|
||||||
conflict_target: :domain
|
conflict_target: :domain
|
||||||
)
|
)
|
||||||
|
|
||||||
Elasticsearch.put_document(Backend.Elasticsearch.Cluster, instance, "instances/_doc")
|
Elasticsearch.put_document!(Backend.Elasticsearch.Cluster, instance, "instances/_doc")
|
||||||
|
|
||||||
# Save details of a new crawl
|
# Save details of a new crawl
|
||||||
curr_crawl =
|
curr_crawl =
|
||||||
|
|
|
@ -59,7 +59,8 @@ defmodule Backend.Instance do
|
||||||
domain: instance.domain,
|
domain: instance.domain,
|
||||||
description: instance.description,
|
description: instance.description,
|
||||||
type: instance.type,
|
type: instance.type,
|
||||||
user_count: instance.user_count
|
user_count: instance.user_count,
|
||||||
|
opt_out: instance.opt_out
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -20,13 +20,21 @@ defmodule BackendWeb.AdminController do
|
||||||
with {:ok, domain} <- Auth.verify_token(token) do
|
with {:ok, domain} <- Auth.verify_token(token) do
|
||||||
%{"optIn" => opt_in, "optOut" => opt_out} = params
|
%{"optIn" => opt_in, "optOut" => opt_out} = params
|
||||||
|
|
||||||
instance = %Instance{
|
# Make sure to update ElasticSearch so that the instance is no longer returned in search results
|
||||||
|
es_instance =
|
||||||
|
Api.get_instance_with_peers(domain)
|
||||||
|
|> Map.put(:opt_in, opt_in)
|
||||||
|
|> Map.put(:opt_out, opt_out)
|
||||||
|
|
||||||
|
Elasticsearch.put_document!(Backend.Elasticsearch.Cluster, es_instance, "instances")
|
||||||
|
|
||||||
|
ecto_instance = %Instance{
|
||||||
domain: domain,
|
domain: domain,
|
||||||
opt_in: opt_in,
|
opt_in: opt_in,
|
||||||
opt_out: opt_out
|
opt_out: opt_out
|
||||||
}
|
}
|
||||||
|
|
||||||
with {:ok, updated_instance} <- Api.update_instance(instance) do
|
with {:ok, updated_instance} <- Api.update_instance(ecto_instance) do
|
||||||
render(conn, "show.json", instance: updated_instance)
|
render(conn, "show.json", instance: updated_instance)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -7,10 +7,15 @@ defmodule BackendWeb.InstanceController do
|
||||||
action_fallback(BackendWeb.FallbackController)
|
action_fallback(BackendWeb.FallbackController)
|
||||||
|
|
||||||
def show(conn, %{"id" => domain}) do
|
def show(conn, %{"id" => domain}) do
|
||||||
instance = Api.get_instance!(domain)
|
instance = Api.get_instance_with_peers(domain)
|
||||||
|
|
||||||
|
if instance == nil or instance.opt_out == true do
|
||||||
|
send_resp(conn, 404, "Not found")
|
||||||
|
else
|
||||||
last_crawl = get_last_crawl(domain)
|
last_crawl = get_last_crawl(domain)
|
||||||
render(conn, "show.json", instance: instance, crawl: last_crawl)
|
render(conn, "show.json", instance: instance, crawl: last_crawl)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# def update(conn, %{"id" => id, "instance" => instance_params}) do
|
# def update(conn, %{"id" => id, "instance" => instance_params}) do
|
||||||
# instance = Api.get_instance!(id)
|
# instance = Api.get_instance!(id)
|
||||||
|
|
|
@ -46,6 +46,9 @@
|
||||||
},
|
},
|
||||||
"user_count": {
|
"user_count": {
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
|
},
|
||||||
|
"opt_out": {
|
||||||
|
"type": "boolean"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue