1 defmodule Pleroma.Mixfile do
7 version: version("2.0.50"),
9 elixirc_paths: elixirc_paths(Mix.env()),
10 compilers: [:phoenix, :gettext] ++ Mix.compilers(),
11 elixirc_options: [warnings_as_errors: warnings_as_errors(Mix.env())],
12 xref: [exclude: [:eldap]],
13 start_permanent: Mix.env() == :prod,
16 test_coverage: [tool: ExCoveralls],
17 preferred_cli_env: ["coveralls.html": :test],
20 homepage_url: "https://pleroma.social/",
21 source_url: "https://git.pleroma.social/pleroma/pleroma",
24 "https://git.pleroma.social/pleroma/pleroma/blob/develop/%{path}#L%{line}",
25 logo: "priv/static/static/logo.png",
26 extras: ["README.md", "CHANGELOG.md"] ++ Path.wildcard("docs/**/*.md"),
28 "Installation manuals": Path.wildcard("docs/installation/*.md"),
29 Configuration: Path.wildcard("docs/config/*.md"),
30 Administration: Path.wildcard("docs/admin/*.md"),
31 "Pleroma's APIs and Mastodon API extensions": Path.wildcard("docs/api/*.md")
34 output: "priv/static/doc"
38 include_executables_for: [:unix],
39 applications: [ex_syslogger: :load, syslog: :load, eldap: :transient],
40 steps: [:assemble, &put_otp_version/1, ©_files/1, ©_nginx_config/1]
46 def put_otp_version(%{path: target_path} = release) do
48 Path.join([target_path, "OTP_VERSION"]),
49 Pleroma.OTPVersion.version()
55 def copy_files(%{path: target_path} = release) do
56 File.cp_r!("./rel/files", target_path)
60 def copy_nginx_config(%{path: target_path} = release) do
62 "./installation/pleroma.nginx",
63 Path.join([target_path, "installation", "pleroma.nginx"])
69 # Configuration for the OTP application.
71 # Type `mix help compile.app` for more information.
74 mod: {Pleroma.Application, []},
83 included_applications: [:ex_syslogger]
87 # Specifies which paths to compile per environment.
88 defp elixirc_paths(:benchmark), do: ["lib", "benchmarks"]
89 defp elixirc_paths(:test), do: ["lib", "test/support"]
90 defp elixirc_paths(_), do: ["lib"]
92 defp warnings_as_errors(:prod), do: false
93 defp warnings_as_errors(_), do: true
95 # Specifies OAuth dependencies.
97 oauth_strategy_packages =
98 System.get_env("OAUTH_CONSUMER_STRATEGIES")
101 |> Enum.map(fn strategy_entry ->
102 with [_strategy, dependency] <- String.split(strategy_entry, ":") do
105 [strategy] -> "ueberauth_#{strategy}"
109 for s <- oauth_strategy_packages, do: {String.to_atom(s), ">= 0.0.0"}
112 # Specifies your project dependencies.
114 # Type `mix help deps` for examples and options.
117 {:phoenix, "~> 1.4.8"},
118 {:tzdata, "~> 1.0.3"},
119 {:plug_cowboy, "~> 2.0"},
120 {:phoenix_pubsub, "~> 1.1"},
121 {:phoenix_ecto, "~> 4.0"},
122 {:ecto_enum, "~> 1.4"},
123 {:ecto_sql, "~> 3.4.4"},
124 {:postgrex, ">= 0.13.5"},
126 {:gettext, "~> 0.15"},
127 {:pbkdf2_elixir, "~> 1.0"},
128 {:bcrypt_elixir, "~> 2.0"},
129 {:trailing_format_plug, "~> 0.0.7"},
130 {:fast_sanitize, "~> 0.1"},
131 {:html_entities, "~> 0.5", override: true},
132 {:phoenix_html, "~> 2.10"},
133 {:calendar, "~> 0.17.4"},
135 {:poison, "~> 3.0", override: true},
136 # {:tesla, "~> 1.3", override: true},
138 git: "https://git.pleroma.social/pleroma/elixir-libraries/tesla.git",
139 ref: "61b7503cef33f00834f78ddfafe0d5d9dec2270b",
141 {:castore, "~> 0.1"},
142 {:cowlib, "~> 2.8", override: true},
144 github: "ninenines/gun", ref: "e1a69b36b180a574c0ac314ced9613fdd52312cc", override: true},
146 {:mogrify, "~> 0.6.1"},
148 {:ex_aws_s3, "~> 2.0"},
149 {:sweet_xml, "~> 0.6.6"},
150 {:earmark, "~> 1.3"},
151 {:bbcode_pleroma, "~> 0.2.0"},
152 {:ex_machina, "~> 2.3", only: :test},
153 {:credo, "~> 1.1.0", only: [:dev, :test], runtime: false},
154 {:mock, "~> 0.3.3", only: :test},
156 git: "https://github.com/msantos/crypt", ref: "f63a705f92c26955977ee62a313012e309a4d77a"},
157 {:cors_plug, "~> 1.5"},
158 {:ex_doc, "~> 0.21", only: :dev, runtime: false},
159 {:web_push_encryption, "~> 0.2.1"},
161 git: "https://github.com/swoosh/swoosh",
162 ref: "c96e0ca8a00d8f211ec1f042a4626b09f249caa5",
164 {:phoenix_swoosh, "~> 0.2"},
165 {:gen_smtp, "~> 0.13"},
166 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
167 {:ex_syslogger, "~> 1.4"},
170 {:ueberauth, "~> 0.4"},
172 git: "https://git.pleroma.social/pleroma/auto_linker.git",
173 ref: "95e8188490e97505c56636c1379ffdf036c1fdde"},
175 git: "https://git.pleroma.social/pleroma/http_signatures.git",
176 ref: "293d77bb6f4a67ac8bde1428735c3b42f22cbb30"},
177 {:telemetry, "~> 0.3"},
178 {:poolboy, "~> 1.5"},
179 {:prometheus, "~> 4.6"},
180 {:prometheus_ex, "~> 3.0"},
181 {:prometheus_plugs, "~> 1.1"},
182 {:prometheus_phoenix, "~> 1.3"},
183 {:prometheus_ecto, "~> 1.4"},
185 {:quack, "~> 0.1.1"},
187 {:benchee, "~> 1.0"},
189 {:esshd, "~> 0.1.0", runtime: Application.get_env(:esshd, :enabled, false)},
190 {:ex_const, "~> 0.2"},
191 {:plug_static_index_html, "~> 1.0.0"},
192 {:excoveralls, "~> 0.12.1", only: :test},
193 {:flake_id, "~> 0.1.0"},
195 git: "https://git.pleroma.social/pleroma/remote_ip.git",
196 ref: "b647d0deecaa3acb140854fe4bda5b7e1dc6d1c8"},
198 git: "https://git.pleroma.social/pleroma/elixir-libraries/elixir-captcha.git",
199 ref: "e0f16822d578866e186a0974d65ad58cddc1e2ab"},
200 {:mox, "~> 0.5", only: :test},
201 {:restarter, path: "./restarter"},
203 git: "https://git.pleroma.social/pleroma/elixir-libraries/open_api_spex.git",
204 ref: "f296ac0924ba3cf79c7a588c4c252889df4c2edd"}
208 # Aliases are shortcuts or tasks specific to the current project.
209 # For example, to create, migrate and run the seeds file at once:
213 # See the documentation for `Mix` for more info on aliases.
216 "ecto.migrate": ["pleroma.ecto.migrate"],
217 "ecto.rollback": ["pleroma.ecto.rollback"],
218 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
219 "ecto.reset": ["ecto.drop", "ecto.setup"],
220 test: ["ecto.create --quiet", "ecto.migrate", "test"],
221 docs: ["pleroma.docs", "docs"]
225 # Builds a version string made of:
226 # * the application version
227 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
230 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
231 # * the mix environment if different than prod
232 defp version(version) do
233 identifier_filter = ~r/[^0-9a-z\-]+/i
235 {_cmdgit, cmdgit_err} = System.cmd("sh", ["-c", "command -v git"])
238 if cmdgit_err == 0 do
240 System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true)
242 {describe, describe_err} = System.cmd("git", ["describe", "--tags", "--abbrev=8"])
243 {commit_hash, commit_hash_err} = System.cmd("git", ["rev-parse", "--short", "HEAD"])
245 # Pre-release version, denoted from patch version with a hyphen
247 tag_err == 0 and describe_err == 0 ->
250 |> String.replace(String.trim(tag), "")
251 |> String.trim_leading("-")
254 commit_hash_err == 0 ->
255 "0-g" <> String.trim(commit_hash)
262 # Branch name as pre-release version component, denoted with a dot
264 with 0 <- cmdgit_err,
265 {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
266 branch_name <- String.trim(branch_name),
267 branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
269 !Enum.any?(["master", "HEAD", "release/", "stable"], fn name ->
270 String.starts_with?(name, branch_name)
275 |> String.replace(identifier_filter, "-")
284 name = Application.get_env(:pleroma, :build_name) -> name
285 name = System.get_env("PLEROMA_BUILD_NAME") -> name
289 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
290 env_override = System.get_env("PLEROMA_BUILD_ENV")
295 env_override when env_override in ["", "prod"] -> nil
296 env_override -> env_override
299 # Pre-release version, denoted by appending a hyphen
300 # and a series of dot separated identifiers
302 [git_pre_release, branch_name]
303 |> Enum.filter(fn string -> string && string != "" end)
307 string -> "-" <> String.replace(string, identifier_filter, "-")
310 # Build metadata, denoted with a plus sign
312 [build_name, env_name]
313 |> Enum.filter(fn string -> string && string != "" end)
317 string -> "+" <> String.replace(string, identifier_filter, "-")
320 [version, pre_release, build_metadata]
321 |> Enum.filter(fn string -> string && string != "" end)