bc5b6204f4e5f0b7478b3f52ee02fff4cd7bf5dc
[akkoma] / mix.exs
1 defmodule Pleroma.Mixfile do
2 use Mix.Project
3
4 def project do
5 [
6 app: :pleroma,
7 version: version("0.9.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 ]
37 end
38
39 # Configuration for the OTP application.
40 #
41 # Type `mix help compile.app` for more information.
42 def application do
43 extra_applications = [:logger, :runtime_tools, :comeonin, :quack]
44 extra_applications = if Application.get_env(:esshd, :enabled, false) do
45 [:esshd | extra_applications]
46 else
47 extra_applications
48 end
49
50 [
51 mod: {Pleroma.Application, []},
52 extra_applications: extra_applications,
53 included_applications: [:ex_syslogger]
54 ]
55 end
56
57 # Specifies which paths to compile per environment.
58 defp elixirc_paths(:test), do: ["lib", "test/support"]
59 defp elixirc_paths(_), do: ["lib"]
60
61 # Specifies your project dependencies.
62 #
63 # Type `mix help deps` for examples and options.
64 defp deps do
65 oauth_strategies = String.split(System.get_env("OAUTH_CONSUMER_STRATEGIES") || "")
66
67 oauth_deps =
68 for s <- oauth_strategies,
69 do: {String.to_atom("ueberauth_#{s}"), ">= 0.0.0"}
70
71 [
72 {:phoenix, "~> 1.4.1"},
73 {:plug_cowboy, "~> 2.0"},
74 {:phoenix_pubsub, "~> 1.1"},
75 {:phoenix_ecto, "~> 4.0"},
76 {:ecto_sql,
77 git: "https://github.com/elixir-ecto/ecto_sql",
78 ref: "14cb065a74c488d737d973f7a91bc036c6245f78",
79 override: true},
80 {:postgrex, ">= 0.13.5"},
81 {:gettext, "~> 0.15"},
82 {:comeonin, "~> 4.1.1"},
83 {:pbkdf2_elixir, "~> 0.12.3"},
84 {:trailing_format_plug, "~> 0.0.7"},
85 {:html_sanitize_ex, "~> 1.3.0"},
86 {:html_entities, "~> 0.4"},
87 {:phoenix_html, "~> 2.10"},
88 {:calendar, "~> 0.17.4"},
89 {:cachex, "~> 3.0.2"},
90 {:httpoison, "~> 1.2.0"},
91 {:poison, "~> 3.0", override: true},
92 {:tesla, "~> 1.2"},
93 {:jason, "~> 1.0"},
94 {:mogrify, "~> 0.6.1"},
95 {:ex_aws, "~> 2.0"},
96 {:ex_aws_s3, "~> 2.0"},
97 {:earmark, "~> 1.3"},
98 {:bbcode, "~> 0.1"},
99 {:ex_machina, "~> 2.3", only: :test},
100 {:credo, "~> 0.9.3", only: [:dev, :test]},
101 {:mock, "~> 0.3.3", only: :test},
102 {:crypt,
103 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
104 {:cors_plug, "~> 1.5"},
105 {:ex_doc, "~> 0.20.2", only: :dev, runtime: false},
106 {:web_push_encryption, "~> 0.2.1"},
107 {:swoosh, "~> 0.20"},
108 {:gen_smtp, "~> 0.13"},
109 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
110 {:floki, "~> 0.20.0"},
111 {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"},
112 {:timex, "~> 3.5"},
113 {:ueberauth, "~> 0.4"},
114 {:auto_linker,
115 git: "https://git.pleroma.social/pleroma/auto_linker.git",
116 ref: "c00c4e75b35367fa42c95ffd9b8c455bf9995829"},
117 {:http_signatures,
118 git: "https://git.pleroma.social/pleroma/http_signatures.git",
119 ref: "9789401987096ead65646b52b5a2ca6bf52fc531"},
120 {:pleroma_job_queue, "~> 0.2.0"},
121 {:telemetry, "~> 0.3"},
122 {:prometheus_ex, "~> 3.0"},
123 {:prometheus_plugs, "~> 1.1"},
124 {:prometheus_phoenix, "~> 1.2"},
125 {:prometheus_ecto, "~> 1.4"},
126 {:prometheus_process_collector, "~> 1.4"},
127 {:recon, github: "ferd/recon", tag: "2.4.0"},
128 {:quack, "~> 0.1.1"},
129 {:benchee, "~> 1.0"},
130 {:esshd, "~> 0.1.0"},
131 {:ex_rated, "~> 1.2"},
132 {:plug_static_index_html, "~> 1.0.0"},
133 {:excoveralls, "~> 0.11.1", only: :test}
134 ] ++ oauth_deps
135 end
136
137 # Aliases are shortcuts or tasks specific to the current project.
138 # For example, to create, migrate and run the seeds file at once:
139 #
140 # $ mix ecto.setup
141 #
142 # See the documentation for `Mix` for more info on aliases.
143 defp aliases do
144 [
145 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
146 "ecto.reset": ["ecto.drop", "ecto.setup"],
147 test: ["ecto.create --quiet", "ecto.migrate", "test"]
148 ]
149 end
150
151 # Builds a version string made of:
152 # * the application version
153 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
154 # * build info:
155 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
156 # * the mix environment if different than prod
157 defp version(version) do
158 {git_tag, git_pre_release} =
159 with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
160 tag = String.trim(tag),
161 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
162 describe = String.trim(describe),
163 ahead <- String.replace(describe, tag, "") do
164 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
165 else
166 _ -> {nil, nil}
167 end
168
169 if git_tag && version != git_tag do
170 Mix.shell().error(
171 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
172 )
173 end
174
175 build_name =
176 cond do
177 name = Application.get_env(:pleroma, :build_name) -> name
178 name = System.get_env("PLEROMA_BUILD_NAME") -> name
179 true -> nil
180 end
181
182 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
183
184 build =
185 [build_name, env_name]
186 |> Enum.filter(fn string -> string && string != "" end)
187 |> Enum.join("-")
188 |> (fn
189 "" -> nil
190 string -> "+" <> string
191 end).()
192
193 [version, git_pre_release, build]
194 |> Enum.filter(fn string -> string && string != "" end)
195 |> Enum.join()
196 end
197 end