Enabled :error_handling, :unknown, :unmatched_returns, :extra_return, :missing_return in an earlier commit and landed a 129-warning baseline. Four parallel agents each fixed a directory slice: - Core contexts (29): Radio, Release, Weather, Beacons, Cache, Backtest.Features, Terrain.Srtm, Ionosphere.GiroClient, Propagation.RunTiming, Accounts.Scope, RepoListener. Fixes were (a) prefix side-effect calls (Task.start, Phoenix.PubSub, Logger, :ets.new) with _ = ; (b) tighten/widen specs that didn't match actual returns; (c) add missing @type t declarations; (d) drop dead parse_int(nil) clause. - Propagation + weather subdirs (15): FreshnessMonitor, NotifyListener, ScoreCache, ScoreCacheReconciler, Weather.FrontalAnalysis, Weather.Grib2.Extractor, Weather.Grib2.Wgrib2, GridCache, HrrrPointEnqueuer, NexradCache. Same patterns — mostly _ = on PubSub / :ets / Repo.insert_all; widened two specs (float -> number) where integer returns were reachable. - Workers (35): BackfillEnqueue, CanadianSoundingFetch, ContactImport, ContactWeatherEnqueue, GefsFetch, IemreFetch, NarrFetch, SolarIndex, TerrainProfile, WeatherFetch. Prefixed Repo.update_all / Radio.set_enrichment_status! / Weather.upsert_* side-effect calls. Fixed one :pattern_match in CanadianSoundingFetch.most_recent_sounding_time/1 where a tautological cond guard generated unreachable code. - Web + Mix tasks + lib_ml (46 of 50): controllers, LiveViews, UserAuth, and 11 mix tasks. Same prefix strategy. 4 remaining warnings originate in LiveTable.LiveResource dep macro expansion and can't be fixed without forking the dep — added .dialyzer_ignore.exs to suppress just those specific file:line pairs. Also wired ignore_warnings in mix.exs dialyzer config. mix dialyzer --format short | grep ^lib/ | wc -l -> 0 mix test: 2163 tests, 3 pre-existing flakes, 0 regressions.
35 lines
1 KiB
Elixir
35 lines
1 KiB
Elixir
defmodule Microwaveprop.Accounts.Scope do
|
|
@moduledoc """
|
|
Defines the scope of the caller to be used throughout the app.
|
|
|
|
The `Microwaveprop.Accounts.Scope` allows public interfaces to receive
|
|
information about the caller, such as if the call is initiated from an
|
|
end-user, and if so, which user. Additionally, such a scope can carry fields
|
|
such as "super user" or other privileges for use as authorization, or to
|
|
ensure specific code paths can only be access for a given scope.
|
|
|
|
It is useful for logging as well as for scoping pubsub subscriptions and
|
|
broadcasts when a caller subscribes to an interface or performs a particular
|
|
action.
|
|
|
|
Feel free to extend the fields on this struct to fit the needs of
|
|
growing application requirements.
|
|
"""
|
|
|
|
alias Microwaveprop.Accounts.User
|
|
|
|
@type t :: %__MODULE__{user: User.t() | nil}
|
|
|
|
defstruct user: nil
|
|
|
|
@doc """
|
|
Creates a scope for the given user.
|
|
|
|
Returns nil if no user is given.
|
|
"""
|
|
def for_user(%User{} = user) do
|
|
%__MODULE__{user: user}
|
|
end
|
|
|
|
def for_user(nil), do: nil
|
|
end
|