Skip to content

Commit

Permalink
[WIP] core jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
shinnokdisengir committed Oct 3, 2024
1 parent 3e4978b commit d512f14
Show file tree
Hide file tree
Showing 5 changed files with 128 additions and 1,321 deletions.
54 changes: 28 additions & 26 deletions apps/astarte_housekeeping/lib/astarte_housekeeping/engine.ex
Original file line number Diff line number Diff line change
Expand Up @@ -19,35 +19,35 @@
defmodule Astarte.Housekeeping.Engine do
require Logger

alias Astarte.Housekeeping.Config
alias Astarte.Housekeeping.Queries
alias Astarte.Housekeeping.Config
alias Astarte.Housekeeping.Migrator
alias Astarte.DataAccess.Realm

def create_realm(
realm,
public_key_pem,
replication_factor,
device_registration_limit,
max_retention,
opts \\ []
) do
def create_realm(realm_name, public_key_pem, replication, device_limit, max_retention, opts) do
_ =
Logger.info(
"Creating new realm.",
tag: "create_realm",
realm: realm,
replication_factor: replication_factor,
device_registration_limit: device_registration_limit,
realm: realm_name,
replication_factor: replication,
device_registration_limit: device_limit,
datastream_maximum_storage_retention: max_retention
)

Queries.create_realm(
realm,
public_key_pem,
replication_factor,
device_registration_limit,
max_retention,
opts
)
fun =
fn ->
Realm.create_realm(
realm_name,
replication,
max_retention,
public_key_pem,
device_limit,
Migrator.latest_realm_schema_version()
)
end

if opts[:async], do: {:ok, _pid} = Task.start(fun), else: :ok = fun.()
end

def get_health do
Expand All @@ -73,14 +73,16 @@ defmodule Astarte.Housekeeping.Engine do
end

def get_realm(realm) do
Queries.get_realm(realm)
Realm.get_realm(realm)
end

def delete_realm(realm, opts \\ []) do
if Config.enable_realm_deletion!() do
_ = Logger.info("Deleting realm", tag: "delete_realm", realm: realm)

Queries.delete_realm(realm, opts)
fun = fn -> Realm.delete_realm(realm) end

if opts[:async], do: {:ok, _pid} = Task.start(fun), else: :ok = fun.()
else
_ =
Logger.info("HOUSEKEEPING_ENABLE_REALM_DELETION is disabled, realm will not be deleted.",
Expand All @@ -93,11 +95,11 @@ defmodule Astarte.Housekeeping.Engine do
end

def is_realm_existing(realm) do
Queries.is_realm_existing(realm)
Realm.is_realm_existing(realm)
end

def list_realms do
Queries.list_realms()
Realm.list_realms()
end

@doc """
Expand Down Expand Up @@ -140,7 +142,7 @@ defmodule Astarte.Housekeeping.Engine do
datastream_maximum_storage_retention: new_retention
} = update_attrs

with realm when is_map(realm) <- Queries.get_realm(realm_name),
with realm when is_map(realm) <- Realm.get_realm(realm_name),
:ok <- update_jwt_public_key_pem(realm_name, new_jwt_public_key_pem),
:ok <- update_device_registration_limit(realm_name, new_limit),
:ok <- update_datastream_maximum_storage_retention(realm_name, new_retention) do
Expand All @@ -155,7 +157,7 @@ defmodule Astarte.Housekeeping.Engine do
defp update_jwt_public_key_pem(_realm_name, nil), do: :ok

defp update_jwt_public_key_pem(realm_name, new_jwt_public_key_pem) do
case Queries.update_public_key(realm_name, new_jwt_public_key_pem) do
case Realm.update_public_key(realm_name, new_jwt_public_key_pem) do
{:ok, %Xandra.Void{}} ->
:ok

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ defmodule Astarte.Housekeeping.Migrator do
require Logger
alias Astarte.Core.CQLUtils
alias Astarte.Housekeeping.Config
alias Astarte.DataAccess.Realm

alias Astarte.Housekeeping.Queries
@query_timeout 60_000

def run_astarte_keyspace_migrations do
Expand All @@ -37,7 +37,7 @@ defmodule Astarte.Housekeeping.Migrator do
def run_realms_migrations do
_ = Logger.info("Starting to migrate Realms.", tag: "realms_migration_started")

with {:ok, realms} <- Queries.list_realms(),
with {:ok, realms} <- Realm.list_realms(),
:ok <- migrate_realms(realms) do
:ok
end
Expand Down
Loading

0 comments on commit d512f14

Please sign in to comment.