Handle new-style mastodon follow lists
[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
17 # Docs
18 name: "Pleroma",
19 source_url: "https://git.pleroma.social/pleroma/pleroma",
20 source_url_pattern:
21 "https://git.pleroma.social/pleroma/pleroma/blob/develop/%{path}#L%{line}",
22 homepage_url: "https://pleroma.social/",
23 docs: [
24 logo: "priv/static/static/logo.png",
25 extras: ["README.md", "CHANGELOG.md"] ++ Path.wildcard("docs/**/*.md"),
26 groups_for_extras: [
27 "Installation manuals": Path.wildcard("docs/installation/*.md"),
28 Configuration: Path.wildcard("docs/config/*.md"),
29 Administration: Path.wildcard("docs/admin/*.md"),
30 "Pleroma's APIs and Mastodon API extensions": Path.wildcard("docs/api/*.md")
31 ],
32 main: "readme",
33 output: "priv/static/doc"
34 ]
35 ]
36 end
37
38 # Configuration for the OTP application.
39 #
40 # Type `mix help compile.app` for more information.
41 def application do
42 [
43 mod: {Pleroma.Application, []},
44 extra_applications: [:logger, :runtime_tools, :comeonin, :quack],
45 included_applications: [:ex_syslogger]
46 ]
47 end
48
49 # Specifies which paths to compile per environment.
50 defp elixirc_paths(:test), do: ["lib", "test/support"]
51 defp elixirc_paths(_), do: ["lib"]
52
53 # Specifies your project dependencies.
54 #
55 # Type `mix help deps` for examples and options.
56 defp deps do
57 oauth_strategies = String.split(System.get_env("OAUTH_CONSUMER_STRATEGIES") || "")
58
59 oauth_deps =
60 for s <- oauth_strategies,
61 do: {String.to_atom("ueberauth_#{s}"), ">= 0.0.0"}
62
63 [
64 {:phoenix, "~> 1.4.1"},
65 {:plug_cowboy, "~> 2.0"},
66 {:phoenix_pubsub, "~> 1.1"},
67 {:phoenix_ecto, "~> 4.0"},
68 {:ecto_sql, "~>3.0.5"},
69 {:postgrex, ">= 0.13.5"},
70 {:gettext, "~> 0.15"},
71 {:comeonin, "~> 4.1.1"},
72 {:pbkdf2_elixir, "~> 0.12.3"},
73 {:trailing_format_plug, "~> 0.0.7"},
74 {:html_sanitize_ex, "~> 1.3.0"},
75 {:html_entities, "~> 0.4"},
76 {:phoenix_html, "~> 2.10"},
77 {:calendar, "~> 0.17.4"},
78 {:cachex, "~> 3.0.2"},
79 {:httpoison, "~> 1.2.0"},
80 {:poison, "~> 3.0", override: true},
81 {:tesla, "~> 1.2"},
82 {:jason, "~> 1.0"},
83 {:mogrify, "~> 0.6.1"},
84 {:ex_aws, "~> 2.0"},
85 {:ex_aws_s3, "~> 2.0"},
86 {:earmark, "~> 1.3"},
87 {:ex_machina, "~> 2.3", only: :test},
88 {:credo, "~> 0.9.3", only: [:dev, :test]},
89 {:mock, "~> 0.3.1", only: :test},
90 {:crypt,
91 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
92 {:cors_plug, "~> 1.5"},
93 {:ex_doc, "~> 0.20.2", only: :dev, runtime: false},
94 {:web_push_encryption, "~> 0.2.1"},
95 {:swoosh, "~> 0.20"},
96 {:gen_smtp, "~> 0.13"},
97 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
98 {:floki, "~> 0.20.0"},
99 {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"},
100 {:timex, "~> 3.5"},
101 {:ueberauth, "~> 0.4"},
102 {:auto_linker,
103 git: "https://git.pleroma.social/pleroma/auto_linker.git",
104 ref: "90613b4bae875a3610c275b7056b61ffdd53210d"},
105 {:pleroma_job_queue, "~> 0.2.0"},
106 {:telemetry, "~> 0.3"},
107 {:prometheus_ex, "~> 3.0"},
108 {:prometheus_plugs, "~> 1.1"},
109 {:prometheus_phoenix, "~> 1.2"},
110 {:prometheus_ecto, "~> 1.4"},
111 {:prometheus_process_collector, "~> 1.4"},
112 {:recon, github: "ferd/recon", tag: "2.4.0"},
113 {:quack, "~> 0.1.1"}
114 ] ++ oauth_deps
115 end
116
117 # Aliases are shortcuts or tasks specific to the current project.
118 # For example, to create, migrate and run the seeds file at once:
119 #
120 # $ mix ecto.setup
121 #
122 # See the documentation for `Mix` for more info on aliases.
123 defp aliases do
124 [
125 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
126 "ecto.reset": ["ecto.drop", "ecto.setup"],
127 test: ["ecto.create --quiet", "ecto.migrate", "test"]
128 ]
129 end
130
131 # Builds a version string made of:
132 # * the application version
133 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
134 # * build info:
135 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
136 # * the mix environment if different than prod
137 defp version(version) do
138 {git_tag, git_pre_release} =
139 with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
140 tag = String.trim(tag),
141 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
142 describe = String.trim(describe),
143 ahead <- String.replace(describe, tag, "") do
144 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
145 else
146 _ -> {nil, nil}
147 end
148
149 if git_tag && version != git_tag do
150 Mix.shell().error(
151 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
152 )
153 end
154
155 build_name =
156 cond do
157 name = Application.get_env(:pleroma, :build_name) -> name
158 name = System.get_env("PLEROMA_BUILD_NAME") -> name
159 true -> nil
160 end
161
162 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
163
164 build =
165 [build_name, env_name]
166 |> Enum.filter(fn string -> string && string != "" end)
167 |> Enum.join("-")
168 |> (fn
169 "" -> nil
170 string -> "+" <> string
171 end).()
172
173 [version, git_pre_release, build]
174 |> Enum.filter(fn string -> string && string != "" end)
175 |> Enum.join()
176 end
177 end