Merge branch 'remove-swift' 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("1.0.0"),
8 elixir: "~> 1.7",
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,
14 aliases: aliases(),
15 deps: deps(),
16 test_coverage: [tool: ExCoveralls],
17
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, &copy_files/1, &copy_nginx_config/1]
41 ]
42 ]
43 ]
44 end
45
46 def copy_files(%{path: target_path} = release) do
47 File.cp_r!("./rel/files", target_path)
48 release
49 end
50
51 def copy_nginx_config(%{path: target_path} = release) do
52 File.cp!(
53 "./installation/pleroma.nginx",
54 Path.join([target_path, "installation", "pleroma.nginx"])
55 )
56
57 release
58 end
59
60 # Configuration for the OTP application.
61 #
62 # Type `mix help compile.app` for more information.
63 def application do
64 [
65 mod: {Pleroma.Application, []},
66 extra_applications: [:logger, :runtime_tools, :comeonin, :quack],
67 included_applications: [:ex_syslogger]
68 ]
69 end
70
71 # Specifies which paths to compile per environment.
72 defp elixirc_paths(:test), do: ["lib", "test/support"]
73 defp elixirc_paths(_), do: ["lib"]
74
75 # Specifies OAuth dependencies.
76 defp oauth_deps do
77 oauth_strategy_packages =
78 System.get_env("OAUTH_CONSUMER_STRATEGIES")
79 |> to_string()
80 |> String.split()
81 |> Enum.map(fn strategy_entry ->
82 with [_strategy, dependency] <- String.split(strategy_entry, ":") do
83 dependency
84 else
85 [strategy] -> "ueberauth_#{strategy}"
86 end
87 end)
88
89 for s <- oauth_strategy_packages, do: {String.to_atom(s), ">= 0.0.0"}
90 end
91
92 # Specifies your project dependencies.
93 #
94 # Type `mix help deps` for examples and options.
95 defp deps do
96 [
97 {:phoenix, "~> 1.4.8"},
98 {:plug_cowboy, "~> 2.0"},
99 {:phoenix_pubsub, "~> 1.1"},
100 {:phoenix_ecto, "~> 4.0"},
101 {:ecto_sql, "~> 3.1"},
102 {:postgrex, ">= 0.13.5"},
103 {:gettext, "~> 0.15"},
104 {:comeonin, "~> 4.1.1"},
105 {:pbkdf2_elixir, "~> 0.12.3"},
106 {:trailing_format_plug, "~> 0.0.7"},
107 {:html_sanitize_ex, "~> 1.3.0"},
108 {:html_entities, "~> 0.4"},
109 {:phoenix_html, "~> 2.10"},
110 {:calendar, "~> 0.17.4"},
111 {:cachex, "~> 3.0.2"},
112 {:poison, "~> 3.0", override: true},
113 {:tesla, "~> 1.2"},
114 {:jason, "~> 1.0"},
115 {:mogrify, "~> 0.6.1"},
116 {:ex_aws, "~> 2.0"},
117 {:ex_aws_s3, "~> 2.0"},
118 {:earmark, "~> 1.3"},
119 {:bbcode, "~> 0.1.1"},
120 {:ex_machina, "~> 2.3", only: :test},
121 {:credo, "~> 0.9.3", only: [:dev, :test]},
122 {:mock, "~> 0.3.3", only: :test},
123 {:crypt,
124 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
125 {:cors_plug, "~> 1.5"},
126 {:ex_doc, "~> 0.20.2", only: :dev, runtime: false},
127 {:web_push_encryption, "~> 0.2.1"},
128 {:swoosh, "~> 0.20"},
129 {:gen_smtp, "~> 0.13"},
130 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
131 {:floki, "~> 0.20.0"},
132 {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"},
133 {:timex, "~> 3.5"},
134 {:ueberauth, "~> 0.4"},
135 {:auto_linker,
136 git: "https://git.pleroma.social/pleroma/auto_linker.git",
137 ref: "95e8188490e97505c56636c1379ffdf036c1fdde"},
138 {:http_signatures,
139 git: "https://git.pleroma.social/pleroma/http_signatures.git",
140 ref: "9789401987096ead65646b52b5a2ca6bf52fc531"},
141 {:pleroma_job_queue, "~> 0.2.0"},
142 {:telemetry, "~> 0.3"},
143 {:prometheus_ex, "~> 3.0"},
144 {:prometheus_plugs, "~> 1.1"},
145 {:prometheus_phoenix, "~> 1.2"},
146 {:prometheus_ecto, "~> 1.4"},
147 {:recon, github: "ferd/recon", tag: "2.4.0"},
148 {:quack, "~> 0.1.1"},
149 {:benchee, "~> 1.0"},
150 {:esshd, "~> 0.1.0", runtime: Application.get_env(:esshd, :enabled, false)},
151 {:ex_rated, "~> 1.3"},
152 {:plug_static_index_html, "~> 1.0.0"},
153 {:excoveralls, "~> 0.11.1", only: :test},
154 {:mox, "~> 0.5", only: :test}
155 ] ++ oauth_deps()
156 end
157
158 # Aliases are shortcuts or tasks specific to the current project.
159 # For example, to create, migrate and run the seeds file at once:
160 #
161 # $ mix ecto.setup
162 #
163 # See the documentation for `Mix` for more info on aliases.
164 defp aliases do
165 [
166 "ecto.migrate": ["pleroma.ecto.migrate"],
167 "ecto.rollback": ["pleroma.ecto.rollback"],
168 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
169 "ecto.reset": ["ecto.drop", "ecto.setup"],
170 test: ["ecto.create --quiet", "ecto.migrate", "test"]
171 ]
172 end
173
174 # Builds a version string made of:
175 # * the application version
176 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
177 # * branch name
178 # * build metadata:
179 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
180 # * the mix environment if different than prod
181 defp version(version) do
182 identifier_filter = ~r/[^0-9a-z\-]+/i
183
184 # Pre-release version, denoted from patch version with a hyphen
185 {git_tag, git_pre_release} =
186 with {tag, 0} <-
187 System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true),
188 tag = String.trim(tag),
189 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
190 describe = String.trim(describe),
191 ahead <- String.replace(describe, tag, "") do
192 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
193 else
194 _ ->
195 {commit_hash, 0} = System.cmd("git", ["rev-parse", "--short", "HEAD"])
196 {nil, "-0-g" <> String.trim(commit_hash)}
197 end
198
199 if git_tag && version != git_tag do
200 Mix.shell().error(
201 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
202 )
203 end
204
205 # Branch name as pre-release version component, denoted with a dot
206 branch_name =
207 with {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
208 branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
209 true <- branch_name != "master" do
210 branch_name =
211 branch_name
212 |> String.trim()
213 |> String.replace(identifier_filter, "-")
214
215 "." <> branch_name
216 end
217
218 build_name =
219 cond do
220 name = Application.get_env(:pleroma, :build_name) -> name
221 name = System.get_env("PLEROMA_BUILD_NAME") -> name
222 true -> nil
223 end
224
225 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
226 env_override = System.get_env("PLEROMA_BUILD_ENV")
227
228 env_name =
229 case env_override do
230 nil -> env_name
231 env_override when env_override in ["", "prod"] -> nil
232 env_override -> env_override
233 end
234
235 # Build metadata, denoted with a plus sign
236 build_metadata =
237 [build_name, env_name]
238 |> Enum.filter(fn string -> string && string != "" end)
239 |> Enum.join(".")
240 |> (fn
241 "" -> nil
242 string -> "+" <> String.replace(string, identifier_filter, "-")
243 end).()
244
245 [version, git_pre_release, branch_name, build_metadata]
246 |> Enum.filter(fn string -> string && string != "" end)
247 |> Enum.join()
248 end
249 end