[#2497] Media preview proxy for images: fixes, tweaks, refactoring, tests adjustments.
[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 {:eimp, ">= 0.0.0"},
143 {:ex_aws, "~> 2.1"},
144 {:ex_aws_s3, "~> 2.0"},
145 {:sweet_xml, "~> 0.6.6"},
146 {:earmark, "~> 1.3"},
147 {:bbcode_pleroma, "~> 0.2.0"},
148 {:ex_machina, "~> 2.3", only: :test},
149 {:credo, "~> 1.1.0", only: [:dev, :test], runtime: false},
150 {:mock, "~> 0.3.3", only: :test},
151 {:crypt,
152 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
153 {:cors_plug, "~> 1.5"},
154 {:ex_doc, "~> 0.21", only: :dev, runtime: false},
155 {:web_push_encryption, "~> 0.2.1"},
156 {:swoosh, "~> 0.23.2"},
157 {:phoenix_swoosh, "~> 0.2"},
158 {:gen_smtp, "~> 0.13"},
159 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
160 {:ex_syslogger, "~> 1.4"},
161 {:floki, "~> 0.25"},
162 {:timex, "~> 3.5"},
163 {:ueberauth, "~> 0.4"},
164 {:auto_linker,
165 git: "https://git.pleroma.social/pleroma/auto_linker.git",
166 ref: "95e8188490e97505c56636c1379ffdf036c1fdde"},
167 {:http_signatures,
168 git: "https://git.pleroma.social/pleroma/http_signatures.git",
169 ref: "293d77bb6f4a67ac8bde1428735c3b42f22cbb30"},
170 {:telemetry, "~> 0.3"},
171 {:poolboy, "~> 1.5"},
172 {:prometheus_ex, "~> 3.0"},
173 {:prometheus_plugs, "~> 1.1"},
174 {:prometheus_phoenix, "~> 1.3"},
175 {:prometheus_ecto, "~> 1.4"},
176 {:recon, "~> 2.5"},
177 {:quack, "~> 0.1.1"},
178 {:joken, "~> 2.0"},
179 {:benchee, "~> 1.0"},
180 {:pot, "~> 0.10.2"},
181 {:esshd, "~> 0.1.0", runtime: Application.get_env(:esshd, :enabled, false)},
182 {:ex_const, "~> 0.2"},
183 {:plug_static_index_html, "~> 1.0.0"},
184 {:excoveralls, "~> 0.12.1", only: :test},
185 {:flake_id, "~> 0.1.0"},
186 {:remote_ip,
187 git: "https://git.pleroma.social/pleroma/remote_ip.git",
188 ref: "b647d0deecaa3acb140854fe4bda5b7e1dc6d1c8"},
189 {:captcha,
190 git: "https://git.pleroma.social/pleroma/elixir-libraries/elixir-captcha.git",
191 ref: "e0f16822d578866e186a0974d65ad58cddc1e2ab"},
192 {:mox, "~> 0.5", only: :test},
193 {:restarter, path: "./restarter"},
194 {:open_api_spex,
195 git: "https://git.pleroma.social/pleroma/elixir-libraries/open_api_spex.git",
196 ref: "b862ebd78de0df95875cf46feb6e9607130dc2a8"}
197 ] ++ oauth_deps()
198 end
199
200 # Aliases are shortcuts or tasks specific to the current project.
201 # For example, to create, migrate and run the seeds file at once:
202 #
203 # $ mix ecto.setup
204 #
205 # See the documentation for `Mix` for more info on aliases.
206 defp aliases do
207 [
208 "ecto.migrate": ["pleroma.ecto.migrate"],
209 "ecto.rollback": ["pleroma.ecto.rollback"],
210 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
211 "ecto.reset": ["ecto.drop", "ecto.setup"],
212 test: ["ecto.create --quiet", "ecto.migrate", "test"],
213 docs: ["pleroma.docs", "docs"]
214 ]
215 end
216
217 # Builds a version string made of:
218 # * the application version
219 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
220 # * branch name
221 # * build metadata:
222 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
223 # * the mix environment if different than prod
224 defp version(version) do
225 identifier_filter = ~r/[^0-9a-z\-]+/i
226
227 # Pre-release version, denoted from patch version with a hyphen
228 {tag, tag_err} =
229 System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true)
230
231 {describe, describe_err} = System.cmd("git", ["describe", "--tags", "--abbrev=8"])
232 {commit_hash, commit_hash_err} = System.cmd("git", ["rev-parse", "--short", "HEAD"])
233
234 git_pre_release =
235 cond do
236 tag_err == 0 and describe_err == 0 ->
237 describe
238 |> String.trim()
239 |> String.replace(String.trim(tag), "")
240 |> String.trim_leading("-")
241 |> String.trim()
242
243 commit_hash_err == 0 ->
244 "0-g" <> String.trim(commit_hash)
245
246 true ->
247 ""
248 end
249
250 # Branch name as pre-release version component, denoted with a dot
251 branch_name =
252 with {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
253 branch_name <- String.trim(branch_name),
254 branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
255 true <-
256 !Enum.any?(["master", "HEAD", "release/", "stable"], fn name ->
257 String.starts_with?(name, branch_name)
258 end) do
259 branch_name =
260 branch_name
261 |> String.trim()
262 |> String.replace(identifier_filter, "-")
263
264 branch_name
265 else
266 _ -> "stable"
267 end
268
269 build_name =
270 cond do
271 name = Application.get_env(:pleroma, :build_name) -> name
272 name = System.get_env("PLEROMA_BUILD_NAME") -> name
273 true -> nil
274 end
275
276 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
277 env_override = System.get_env("PLEROMA_BUILD_ENV")
278
279 env_name =
280 case env_override do
281 nil -> env_name
282 env_override when env_override in ["", "prod"] -> nil
283 env_override -> env_override
284 end
285
286 # Pre-release version, denoted by appending a hyphen
287 # and a series of dot separated identifiers
288 pre_release =
289 [git_pre_release, branch_name]
290 |> Enum.filter(fn string -> string && string != "" end)
291 |> Enum.join(".")
292 |> (fn
293 "" -> nil
294 string -> "-" <> String.replace(string, identifier_filter, "-")
295 end).()
296
297 # Build metadata, denoted with a plus sign
298 build_metadata =
299 [build_name, env_name]
300 |> Enum.filter(fn string -> string && string != "" end)
301 |> Enum.join(".")
302 |> (fn
303 "" -> nil
304 string -> "+" <> String.replace(string, identifier_filter, "-")
305 end).()
306
307 [version, pre_release, build_metadata]
308 |> Enum.filter(fn string -> string && string != "" end)
309 |> Enum.join()
310 end
311 end