Merge branch 'fix/privacy-notification' into 'develop'
[akkoma] / mix.exs
1 defmodule Pleroma.Mixfile do
2 use Mix.Project
3
4 def project do
5 [
6 app: :pleroma,
7 version: version("2.0.50"),
8 elixir: "~> 1.8",
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,
14 aliases: aliases(),
15 deps: deps(),
16 test_coverage: [tool: ExCoveralls],
17 preferred_cli_env: ["coveralls.html": :test],
18 # Docs
19 name: "Pleroma",
20 homepage_url: "https://pleroma.social/",
21 source_url: "https://git.pleroma.social/pleroma/pleroma",
22 docs: [
23 source_url_pattern:
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"),
27 groups_for_extras: [
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")
32 ],
33 main: "readme",
34 output: "priv/static/doc"
35 ],
36 releases: [
37 pleroma: [
38 include_executables_for: [:unix],
39 applications: [ex_syslogger: :load, syslog: :load],
40 steps: [:assemble, &put_otp_version/1, &copy_files/1, &copy_nginx_config/1]
41 ]
42 ]
43 ]
44 end
45
46 def put_otp_version(%{path: target_path} = release) do
47 File.write!(
48 Path.join([target_path, "OTP_VERSION"]),
49 Pleroma.OTPVersion.version()
50 )
51
52 release
53 end
54
55 def copy_files(%{path: target_path} = release) do
56 File.cp_r!("./rel/files", target_path)
57 release
58 end
59
60 def copy_nginx_config(%{path: target_path} = release) do
61 File.cp!(
62 "./installation/pleroma.nginx",
63 Path.join([target_path, "installation", "pleroma.nginx"])
64 )
65
66 release
67 end
68
69 # Configuration for the OTP application.
70 #
71 # Type `mix help compile.app` for more information.
72 def application do
73 [
74 mod: {Pleroma.Application, []},
75 extra_applications: [:logger, :runtime_tools, :comeonin, :quack, :fast_sanitize, :ssl],
76 included_applications: [:ex_syslogger]
77 ]
78 end
79
80 # Specifies which paths to compile per environment.
81 defp elixirc_paths(:benchmark), do: ["lib", "benchmarks"]
82 defp elixirc_paths(:test), do: ["lib", "test/support"]
83 defp elixirc_paths(_), do: ["lib"]
84
85 defp warnings_as_errors(:prod), do: false
86 # Uncomment this if you need testing configurable_from_database logic
87 # defp warnings_as_errors(:dev), do: false
88 defp warnings_as_errors(_), do: true
89
90 # Specifies OAuth dependencies.
91 defp oauth_deps do
92 oauth_strategy_packages =
93 System.get_env("OAUTH_CONSUMER_STRATEGIES")
94 |> to_string()
95 |> String.split()
96 |> Enum.map(fn strategy_entry ->
97 with [_strategy, dependency] <- String.split(strategy_entry, ":") do
98 dependency
99 else
100 [strategy] -> "ueberauth_#{strategy}"
101 end
102 end)
103
104 for s <- oauth_strategy_packages, do: {String.to_atom(s), ">= 0.0.0"}
105 end
106
107 # Specifies your project dependencies.
108 #
109 # Type `mix help deps` for examples and options.
110 defp deps do
111 [
112 {:phoenix, "~> 1.4.8"},
113 {:tzdata, "~> 0.5.21"},
114 {:plug_cowboy, "~> 2.0"},
115 {:phoenix_pubsub, "~> 1.1"},
116 {:phoenix_ecto, "~> 4.0"},
117 {:ecto_enum, "~> 1.4"},
118 {:ecto_sql, "~> 3.3.2"},
119 {:postgrex, ">= 0.13.5"},
120 {:oban, "~> 1.2"},
121 {:gettext, "~> 0.15"},
122 {:comeonin, "~> 4.1.1"},
123 {:pbkdf2_elixir, "~> 0.12.3"},
124 {:trailing_format_plug, "~> 0.0.7"},
125 {:fast_sanitize, "~> 0.1"},
126 {:html_entities, "~> 0.5", override: true},
127 {:phoenix_html, "~> 2.10"},
128 {:calendar, "~> 0.17.4"},
129 {:cachex, "~> 3.2"},
130 {:poison, "~> 3.0", override: true},
131 # {:tesla, "~> 1.3", override: true},
132 {:tesla,
133 git: "https://git.pleroma.social/pleroma/elixir-libraries/tesla.git",
134 ref: "61b7503cef33f00834f78ddfafe0d5d9dec2270b",
135 override: true},
136 {:castore, "~> 0.1"},
137 {:cowlib, "~> 2.8", override: true},
138 {:gun,
139 github: "ninenines/gun", ref: "e1a69b36b180a574c0ac314ced9613fdd52312cc", override: true},
140 {:jason, "~> 1.0"},
141 {:mogrify, "~> 0.6.1"},
142 {:ex_aws, "~> 2.1"},
143 {:ex_aws_s3, "~> 2.0"},
144 {:sweet_xml, "~> 0.6.6"},
145 {:earmark, "~> 1.3"},
146 {:bbcode_pleroma, "~> 0.2.0"},
147 {:ex_machina, "~> 2.3", only: :test},
148 {:credo, "~> 1.1.0", only: [:dev, :test], runtime: false},
149 {:mock, "~> 0.3.3", only: :test},
150 {:crypt,
151 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
152 {:cors_plug, "~> 1.5"},
153 {:ex_doc, "~> 0.21", only: :dev, runtime: false},
154 {:web_push_encryption, "~> 0.2.1"},
155 {:swoosh, "~> 0.23.2"},
156 {:phoenix_swoosh, "~> 0.2"},
157 {:gen_smtp, "~> 0.13"},
158 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
159 {:ex_syslogger, "~> 1.4"},
160 {:floki, "~> 0.25"},
161 {:timex, "~> 3.5"},
162 {:ueberauth, "~> 0.4"},
163 {:auto_linker,
164 git: "https://git.pleroma.social/pleroma/auto_linker.git",
165 ref: "95e8188490e97505c56636c1379ffdf036c1fdde"},
166 {:http_signatures,
167 git: "https://git.pleroma.social/pleroma/http_signatures.git",
168 ref: "293d77bb6f4a67ac8bde1428735c3b42f22cbb30"},
169 {:telemetry, "~> 0.3"},
170 {:poolboy, "~> 1.5"},
171 {:prometheus_ex, "~> 3.0"},
172 {:prometheus_plugs, "~> 1.1"},
173 {:prometheus_phoenix, "~> 1.3"},
174 {:prometheus_ecto, "~> 1.4"},
175 {:recon, "~> 2.5"},
176 {:quack, "~> 0.1.1"},
177 {:joken, "~> 2.0"},
178 {:benchee, "~> 1.0"},
179 {:pot, "~> 0.10.2"},
180 {:esshd, "~> 0.1.0", runtime: Application.get_env(:esshd, :enabled, false)},
181 {:ex_const, "~> 0.2"},
182 {:plug_static_index_html, "~> 1.0.0"},
183 {:excoveralls, "~> 0.12.1", only: :test},
184 {:flake_id, "~> 0.1.0"},
185 {:remote_ip,
186 git: "https://git.pleroma.social/pleroma/remote_ip.git",
187 ref: "b647d0deecaa3acb140854fe4bda5b7e1dc6d1c8"},
188 {:captcha,
189 git: "https://git.pleroma.social/pleroma/elixir-libraries/elixir-captcha.git",
190 ref: "e0f16822d578866e186a0974d65ad58cddc1e2ab"},
191 {:mox, "~> 0.5", only: :test},
192 {:restarter, path: "./restarter"},
193 {:open_api_spex,
194 git: "https://git.pleroma.social/pleroma/elixir-libraries/open_api_spex.git",
195 ref: "b862ebd78de0df95875cf46feb6e9607130dc2a8"}
196 ] ++ oauth_deps()
197 end
198
199 # Aliases are shortcuts or tasks specific to the current project.
200 # For example, to create, migrate and run the seeds file at once:
201 #
202 # $ mix ecto.setup
203 #
204 # See the documentation for `Mix` for more info on aliases.
205 defp aliases do
206 [
207 "ecto.migrate": ["pleroma.ecto.migrate"],
208 "ecto.rollback": ["pleroma.ecto.rollback"],
209 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
210 "ecto.reset": ["ecto.drop", "ecto.setup"],
211 test: ["ecto.create --quiet", "ecto.migrate", "test"],
212 docs: ["pleroma.docs", "docs"]
213 ]
214 end
215
216 # Builds a version string made of:
217 # * the application version
218 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
219 # * branch name
220 # * build metadata:
221 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
222 # * the mix environment if different than prod
223 defp version(version) do
224 identifier_filter = ~r/[^0-9a-z\-]+/i
225
226 # Pre-release version, denoted from patch version with a hyphen
227 {tag, tag_err} =
228 System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true)
229
230 {describe, describe_err} = System.cmd("git", ["describe", "--tags", "--abbrev=8"])
231 {commit_hash, commit_hash_err} = System.cmd("git", ["rev-parse", "--short", "HEAD"])
232
233 git_pre_release =
234 cond do
235 tag_err == 0 and describe_err == 0 ->
236 describe
237 |> String.trim()
238 |> String.replace(String.trim(tag), "")
239 |> String.trim_leading("-")
240 |> String.trim()
241
242 commit_hash_err == 0 ->
243 "0-g" <> String.trim(commit_hash)
244
245 true ->
246 ""
247 end
248
249 # Branch name as pre-release version component, denoted with a dot
250 branch_name =
251 with {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
252 branch_name <- String.trim(branch_name),
253 branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
254 true <-
255 !Enum.any?(["master", "HEAD", "release/", "stable"], fn name ->
256 String.starts_with?(name, branch_name)
257 end) do
258 branch_name =
259 branch_name
260 |> String.trim()
261 |> String.replace(identifier_filter, "-")
262
263 branch_name
264 else
265 _ -> "stable"
266 end
267
268 build_name =
269 cond do
270 name = Application.get_env(:pleroma, :build_name) -> name
271 name = System.get_env("PLEROMA_BUILD_NAME") -> name
272 true -> nil
273 end
274
275 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
276 env_override = System.get_env("PLEROMA_BUILD_ENV")
277
278 env_name =
279 case env_override do
280 nil -> env_name
281 env_override when env_override in ["", "prod"] -> nil
282 env_override -> env_override
283 end
284
285 # Pre-release version, denoted by appending a hyphen
286 # and a series of dot separated identifiers
287 pre_release =
288 [git_pre_release, branch_name]
289 |> Enum.filter(fn string -> string && string != "" end)
290 |> Enum.join(".")
291 |> (fn
292 "" -> nil
293 string -> "-" <> String.replace(string, identifier_filter, "-")
294 end).()
295
296 # Build metadata, denoted with a plus sign
297 build_metadata =
298 [build_name, env_name]
299 |> Enum.filter(fn string -> string && string != "" end)
300 |> Enum.join(".")
301 |> (fn
302 "" -> nil
303 string -> "+" <> String.replace(string, identifier_filter, "-")
304 end).()
305
306 [version, pre_release, build_metadata]
307 |> Enum.filter(fn string -> string && string != "" end)
308 |> Enum.join()
309 end
310 end