Merge branch 'fix/mastoapi-liked' 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("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: [
26 "README.md",
27 "docs/Admin-API.md",
28 "docs/Clients.md",
29 "docs/config.md",
30 "docs/Custom-Emoji.md",
31 "docs/Differences-in-MastodonAPI-Responses.md",
32 "docs/Message-Rewrite-Facility-configuration.md",
33 "docs/Pleroma-API.md",
34 "docs/static_dir.md"
35 ],
36 main: "readme",
37 output: "priv/static/doc"
38 ]
39 ]
40 end
41
42 # Configuration for the OTP application.
43 #
44 # Type `mix help compile.app` for more information.
45 def application do
46 [
47 mod: {Pleroma.Application, []},
48 extra_applications: [:logger, :runtime_tools, :comeonin],
49 included_applications: [:ex_syslogger]
50 ]
51 end
52
53 # Specifies which paths to compile per environment.
54 defp elixirc_paths(:test), do: ["lib", "test/support"]
55 defp elixirc_paths(_), do: ["lib"]
56
57 # Specifies your project dependencies.
58 #
59 # Type `mix help deps` for examples and options.
60 defp deps do
61 [
62 {:phoenix, "~> 1.4.1"},
63 {:plug_cowboy, "~> 2.0"},
64 {:phoenix_pubsub, "~> 1.1"},
65 {:phoenix_ecto, "~> 4.0"},
66 {:ecto_sql, "~>3.0.5"},
67 {:postgrex, ">= 0.13.5"},
68 {:gettext, "~> 0.15"},
69 {:comeonin, "~> 4.1.1"},
70 {:pbkdf2_elixir, "~> 0.12.3"},
71 {:trailing_format_plug, "~> 0.0.7"},
72 {:html_sanitize_ex, "~> 1.3.0"},
73 {:html_entities, "~> 0.4"},
74 {:phoenix_html, "~> 2.10"},
75 {:calendar, "~> 0.17.4"},
76 {:cachex, "~> 3.0.2"},
77 {:httpoison, "~> 1.2.0"},
78 {:tesla, "~> 1.2"},
79 {:jason, "~> 1.0"},
80 {:mogrify, "~> 0.6.1"},
81 {:ex_aws, "~> 2.0"},
82 {:ex_aws_s3, "~> 2.0"},
83 {:earmark, "~> 1.3"},
84 {:ex_machina, "~> 2.3", only: :test},
85 {:credo, "~> 0.9.3", only: [:dev, :test]},
86 {:mock, "~> 0.3.1", only: :test},
87 {:crypt,
88 git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
89 {:cors_plug, "~> 1.5"},
90 {:ex_doc, "~> 0.19", only: :dev, runtime: false},
91 {:web_push_encryption, "~> 0.2.1"},
92 {:swoosh, "~> 0.20"},
93 {:gen_smtp, "~> 0.13"},
94 {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
95 {:floki, "~> 0.20.0"},
96 {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"},
97 {:timex, "~> 3.5"},
98 {:auto_linker,
99 git: "https://git.pleroma.social/pleroma/auto_linker.git",
100 ref: "94193ca5f97c1f9fdf3d1469653e2d46fac34bcd"}
101 ]
102 end
103
104 # Aliases are shortcuts or tasks specific to the current project.
105 # For example, to create, migrate and run the seeds file at once:
106 #
107 # $ mix ecto.setup
108 #
109 # See the documentation for `Mix` for more info on aliases.
110 defp aliases do
111 [
112 "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
113 "ecto.reset": ["ecto.drop", "ecto.setup"],
114 test: ["ecto.create --quiet", "ecto.migrate", "test"]
115 ]
116 end
117
118 # Builds a version string made of:
119 # * the application version
120 # * a pre-release if ahead of the tag: the describe string (-count-commithash)
121 # * build info:
122 # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
123 # * the mix environment if different than prod
124 defp version(version) do
125 {git_tag, git_pre_release} =
126 with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
127 tag = String.trim(tag),
128 {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
129 describe = String.trim(describe),
130 ahead <- String.replace(describe, tag, "") do
131 {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
132 else
133 _ -> {nil, nil}
134 end
135
136 if git_tag && version != git_tag do
137 Mix.shell().error(
138 "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
139 )
140 end
141
142 build_name =
143 cond do
144 name = Application.get_env(:pleroma, :build_name) -> name
145 name = System.get_env("PLEROMA_BUILD_NAME") -> name
146 true -> nil
147 end
148
149 env_name = if Mix.env() != :prod, do: to_string(Mix.env())
150
151 build =
152 [build_name, env_name]
153 |> Enum.filter(fn string -> string && string != "" end)
154 |> Enum.join("-")
155 |> (fn
156 "" -> nil
157 string -> "+" <> string
158 end).()
159
160 [version, git_pre_release, build]
161 |> Enum.filter(fn string -> string && string != "" end)
162 |> Enum.join()
163 end
164 end