mirror of
https://github.com/plausible/analytics.git
synced 2025-01-06 09:50:56 +03:00
082ec91c63
* Update depenedencies: OpenAPISpex + cursor based pagination * Update formatter config * Add internal server error implementation * Test errors * Implement pagination interface * Implement Plugins API module macros * Implement Public API base URI (to be used with path helpers once called from within forwarded router's scope) * Implement OpenAPI specs + schemas * Implement Shared Links context module * Add pagination and error views * Add Shared Link view * Implement Shared Link controller * Expose SharedLink.t() spec * Implement separate router for the Plugins API * Update moduledocs * Always wrap resource objects with `data` * Update moduledoc * Use https://github.com/open-api-spex/open_api_spex/pull/425 due to https://github.com/open-api-spex/open_api_spex/issues/92 * Rely on BASE_URL for swagger-ui server definition * Fixup goals migration * Migrate broken goals before deleting dupes * Remove bypassing test rate limiting for which there's none anyway * Move the context module under `Plausible.` namespace * Bring back conn assignment to PluginsAPICase template * Update test/plausible_web/plugins/api/controllers/shared_links_test.exs Co-authored-by: Uku Taht <Uku.taht@gmail.com> * Update renamed aliases * Seed static token for development purposes * Delegate Plugins API 500s to a familiar shape * Simplify with statement --------- Co-authored-by: Uku Taht <Uku.taht@gmail.com>
89 lines
2.1 KiB
Elixir
89 lines
2.1 KiB
Elixir
defmodule PlausibleWeb do
|
|
def controller do
|
|
quote do
|
|
use Phoenix.Controller, namespace: PlausibleWeb
|
|
|
|
import Plug.Conn
|
|
import PlausibleWeb.ControllerHelpers
|
|
alias PlausibleWeb.Router.Helpers, as: Routes
|
|
end
|
|
end
|
|
|
|
def view do
|
|
quote do
|
|
use Phoenix.View,
|
|
root: "lib/plausible_web/templates",
|
|
namespace: PlausibleWeb
|
|
|
|
# Import convenience functions from controllers
|
|
import Phoenix.Controller, only: [view_module: 1]
|
|
|
|
# Use all HTML functionality (forms, tags, etc)
|
|
use Phoenix.HTML
|
|
use Phoenix.Component
|
|
|
|
import PlausibleWeb.ErrorHelpers
|
|
import PlausibleWeb.FormHelpers
|
|
import PlausibleWeb.Components.Generic
|
|
alias PlausibleWeb.Router.Helpers, as: Routes
|
|
end
|
|
end
|
|
|
|
def router do
|
|
quote do
|
|
use Phoenix.Router
|
|
import Plug.Conn
|
|
import Phoenix.Controller
|
|
end
|
|
end
|
|
|
|
def channel do
|
|
quote do
|
|
use Phoenix.Channel
|
|
end
|
|
end
|
|
|
|
def plugins_api_controller do
|
|
quote do
|
|
use Phoenix.Controller, namespace: PlausibleWeb.Plugins.API
|
|
import Plug.Conn
|
|
import PlausibleWeb.Plugins.API.Router.Helpers
|
|
import PlausibleWeb.Plugins.API, only: [base_uri: 0]
|
|
|
|
alias PlausibleWeb.Plugins.API.Schemas
|
|
alias PlausibleWeb.Plugins.API.Views
|
|
alias Plausible.Plugins.API.Context
|
|
|
|
plug(OpenApiSpex.Plug.CastAndValidate, json_render_error_v2: true, replace_params: false)
|
|
|
|
use OpenApiSpex.ControllerSpecs
|
|
end
|
|
end
|
|
|
|
def plugins_api_view do
|
|
quote do
|
|
use Phoenix.View,
|
|
namespace: PlausibleWeb.Plugins.API,
|
|
root: ""
|
|
|
|
alias PlausibleWeb.Plugins.API.Router.Helpers
|
|
import PlausibleWeb.Plugins.API.Views.Pagination, only: [render_metadata_links: 4]
|
|
end
|
|
end
|
|
|
|
def open_api_schema do
|
|
quote do
|
|
require OpenApiSpex
|
|
alias OpenApiSpex.Schema
|
|
alias PlausibleWeb.Plugins.API.Schemas
|
|
end
|
|
end
|
|
|
|
@doc """
|
|
When used, dispatch to the appropriate controller/view/etc.
|
|
"""
|
|
defmacro __using__(which) when is_atom(which) do
|
|
apply(__MODULE__, which, [])
|
|
end
|
|
end
|