1 defmodule Pleroma.Mixfile do
7 version: version("1.0.0"),
9 elixirc_paths: elixirc_paths(Mix.env()),
10 compilers: [:phoenix, :gettext] ++ Mix.compilers(),
11 elixirc_options: [warnings_as_errors: true],
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],
40 steps: [:assemble, ©_files/1, ©_nginx_config/1]
46 def copy_files(%{path: target_path} = release) do
47 File.cp_r!("./rel/files", target_path)
51 def copy_nginx_config(%{path: target_path} = release) do
53 "./installation/pleroma.nginx",
54 Path.join([target_path, "installation", "pleroma.nginx"])
60 # Configuration for the OTP application.
62 # Type `mix help compile.app` for more information.
65 mod: {Pleroma.Application, []},
66 extra_applications: [:logger, :runtime_tools, :comeonin, :quack],
67 included_applications: [:ex_syslogger]
71 # Specifies which paths to compile per environment.
72 defp elixirc_paths(:test), do: ["lib", "test/support"]
73 defp elixirc_paths(_), do: ["lib"]
75 # Specifies OAuth dependencies.
77 oauth_strategy_packages =
78 System.get_env("OAUTH_CONSUMER_STRATEGIES")
81 |> Enum.map(fn strategy_entry ->
82 with [_strategy, dependency] <- String.split(strategy_entry, ":") do
85 [strategy] -> "ueberauth_#{strategy}"
89 for s <- oauth_strategy_packages, do: {String.to_atom(s), ">= 0.0.0"}
92 # Specifies your project dependencies.
94 # Type `mix help deps` for examples and options.
97 {:phoenix, "~> 1.4.8"},
98 {:tzdata, "~> 0.5.21"},
99 {:plug_cowboy, "~> 2.0"},
100 {:phoenix_pubsub, "~> 1.1"},
101 {:phoenix_ecto, "~> 4.0"},
102 {:ecto_sql, "~> 3.2"},
103 {:postgrex, ">= 0.13.5"},
105 {:quantum, "~> 2.3"},
106 {:gettext, "~> 0.15"},
107 {:comeonin, "~> 4.1.1"},
108 {:pbkdf2_elixir, "~> 0.12.3"},
109 {:trailing_format_plug, "~> 0.0.7"},
110 {:html_sanitize_ex, "~> 1.3.0"},
111 {:html_entities, "~> 0.4"},
112 {:phoenix_html, "~> 2.10"},
113 {:calendar, "~> 0.17.4"},
114 {:cachex, "~> 3.0.2"},
115 {:poison, "~> 3.0", override: true},
116 {:tesla, "~> 1.3", override: true},
118 {:mogrify, "~> 0.6.1"},
120 {:ex_aws_s3, "~> 2.0"},
121 {:sweet_xml, "~> 0.6.6"},
122 {:earmark, "~> 1.3"},
123 {:bbcode, "~> 0.1.1"},
124 {:ex_machina, "~> 2.3", only: :test},
125 {:credo, "~> 0.9.3", only: [:dev, :test]},
126 {:mock, "~> 0.3.3", only: :test},
128 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
129 {:cors_plug, "~> 1.5"},
130 {:ex_doc, "~> 0.21", only: :dev, runtime: false},
131 {:web_push_encryption, "~> 0.2.1"},
132 {:swoosh, "~> 0.23.2"},
133 {:phoenix_swoosh, "~> 0.2"},
134 {:gen_smtp, "~> 0.13"},
135 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
136 {:floki, "~> 0.23.0"},
137 {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"},
139 {:ueberauth, "~> 0.4"},
141 git: "https://git.pleroma.social/pleroma/auto_linker.git",
142 ref: "95e8188490e97505c56636c1379ffdf036c1fdde"},
144 git: "https://git.pleroma.social/pleroma/http_signatures.git",
145 ref: "293d77bb6f4a67ac8bde1428735c3b42f22cbb30"},
146 {:telemetry, "~> 0.3"},
147 {:poolboy, "~> 1.5"},
148 {:prometheus_ex, "~> 3.0"},
149 {:prometheus_plugs, "~> 1.1"},
150 {:prometheus_phoenix, "~> 1.3"},
151 {:prometheus_ecto, "~> 1.4"},
152 {:recon, github: "ferd/recon", tag: "2.4.0"},
153 {:quack, "~> 0.1.1"},
155 {:benchee, "~> 1.0"},
156 {:esshd, "~> 0.1.0", runtime: Application.get_env(:esshd, :enabled, false)},
157 {:ex_rated, "~> 1.3"},
158 {:ex_const, "~> 0.2"},
159 {:plug_static_index_html, "~> 1.0.0"},
160 {:excoveralls, "~> 0.11.1", only: :test},
161 {:flake_id, "~> 0.1.0"},
163 git: "https://git.pleroma.social/pleroma/remote_ip.git",
164 ref: "825dc00aaba5a1b7c4202a532b696b595dd3bcb3"},
165 {:mox, "~> 0.5", only: :test}
169 # Aliases are shortcuts or tasks specific to the current project.
170 # For example, to create, migrate and run the seeds file at once:
174 # See the documentation for `Mix` for more info on aliases.
177 "ecto.migrate": ["pleroma.ecto.migrate"],
178 "ecto.rollback": ["pleroma.ecto.rollback"],
179 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
180 "ecto.reset": ["ecto.drop", "ecto.setup"],
181 test: ["ecto.create --quiet", "ecto.migrate", "test"],
182 docs: ["pleroma.docs", "docs"]
186 # Builds a version string made of:
187 # * the application version
188 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
191 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
192 # * the mix environment if different than prod
193 defp version(version) do
194 identifier_filter = ~r/[^0-9a-z\-]+/i
196 # Pre-release version, denoted from patch version with a hyphen
197 {git_tag, git_pre_release} =
199 System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true),
200 tag = String.trim(tag),
201 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
202 describe = String.trim(describe),
203 ahead <- String.replace(describe, tag, ""),
204 ahead <- String.trim_leading(ahead, "-") do
205 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
208 {commit_hash, 0} = System.cmd("git", ["rev-parse", "--short", "HEAD"])
209 {nil, "0-g" <> String.trim(commit_hash)}
212 if git_tag && version != git_tag do
214 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
218 # Branch name as pre-release version component, denoted with a dot
220 with {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
221 branch_name <- String.trim(branch_name),
222 branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
223 true <- branch_name not in ["master", "HEAD"] do
227 |> String.replace(identifier_filter, "-")
234 name = Application.get_env(:pleroma, :build_name) -> name
235 name = System.get_env("PLEROMA_BUILD_NAME") -> name
239 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
240 env_override = System.get_env("PLEROMA_BUILD_ENV")
245 env_override when env_override in ["", "prod"] -> nil
246 env_override -> env_override
249 # Pre-release version, denoted by appending a hyphen
250 # and a series of dot separated identifiers
252 [git_pre_release, branch_name]
253 |> Enum.filter(fn string -> string && string != "" end)
257 string -> "-" <> String.replace(string, identifier_filter, "-")
260 # Build metadata, denoted with a plus sign
262 [build_name, env_name]
263 |> Enum.filter(fn string -> string && string != "" end)
267 string -> "+" <> String.replace(string, identifier_filter, "-")
270 [version, pre_release, build_metadata]
271 |> Enum.filter(fn string -> string && string != "" end)