mix.exs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. defmodule Pleroma.Mixfile do
  2. use Mix.Project
  3. def project do
  4. [
  5. app: :pleroma,
  6. version: version("2.5.51"),
  7. elixir: "~> 1.11",
  8. elixirc_paths: elixirc_paths(Mix.env()),
  9. compilers: [:phoenix, :gettext] ++ Mix.compilers(),
  10. elixirc_options: [warnings_as_errors: warnings_as_errors()],
  11. xref: [exclude: [:eldap]],
  12. start_permanent: Mix.env() == :prod,
  13. aliases: aliases(),
  14. deps: deps(),
  15. test_coverage: [tool: :covertool, summary: true],
  16. # Docs
  17. name: "Pleroma",
  18. homepage_url: "https://pleroma.social/",
  19. source_url: "https://git.pleroma.social/pleroma/pleroma",
  20. docs: [
  21. source_url_pattern:
  22. "https://git.pleroma.social/pleroma/pleroma/blob/develop/%{path}#L%{line}",
  23. logo: "priv/static/images/logo.png",
  24. extras: ["README.md", "CHANGELOG.md"] ++ Path.wildcard("docs/**/*.md"),
  25. groups_for_extras: [
  26. "Installation manuals": Path.wildcard("docs/installation/*.md"),
  27. Configuration: Path.wildcard("docs/config/*.md"),
  28. Administration: Path.wildcard("docs/admin/*.md"),
  29. "Pleroma's APIs and Mastodon API extensions": Path.wildcard("docs/api/*.md")
  30. ],
  31. main: "readme",
  32. output: "priv/static/doc"
  33. ],
  34. releases: [
  35. pleroma: [
  36. include_executables_for: [:unix],
  37. applications: [ex_syslogger: :load, syslog: :load, eldap: :transient],
  38. steps: [:assemble, &put_otp_version/1, &copy_files/1, &copy_nginx_config/1],
  39. config_providers: [{Pleroma.Config.ReleaseRuntimeProvider, []}]
  40. ]
  41. ]
  42. ]
  43. end
  44. def put_otp_version(%{path: target_path} = release) do
  45. File.write!(
  46. Path.join([target_path, "OTP_VERSION"]),
  47. Pleroma.OTPVersion.version()
  48. )
  49. release
  50. end
  51. def copy_files(%{path: target_path} = release) do
  52. File.cp_r!("./rel/files", target_path)
  53. release
  54. end
  55. def copy_nginx_config(%{path: target_path} = release) do
  56. File.cp!(
  57. "./installation/pleroma.nginx",
  58. Path.join([target_path, "installation", "pleroma.nginx"])
  59. )
  60. release
  61. end
  62. # Configuration for the OTP application.
  63. #
  64. # Type `mix help compile.app` for more information.
  65. def application do
  66. [
  67. mod: {Pleroma.Application, []},
  68. extra_applications: [
  69. :logger,
  70. :runtime_tools,
  71. :comeonin,
  72. :fast_sanitize,
  73. :os_mon,
  74. :ssl
  75. ],
  76. included_applications: [:ex_syslogger]
  77. ]
  78. end
  79. # Specifies which paths to compile per environment.
  80. defp elixirc_paths(:benchmark), do: ["lib", "benchmarks", "priv/scrubbers"]
  81. defp elixirc_paths(:test), do: ["lib", "test/support"]
  82. defp elixirc_paths(_), do: ["lib"]
  83. defp warnings_as_errors, do: System.get_env("CI") == "true"
  84. # Specifies OAuth dependencies.
  85. defp oauth_deps do
  86. oauth_strategy_packages =
  87. System.get_env("OAUTH_CONSUMER_STRATEGIES")
  88. |> to_string()
  89. |> String.split()
  90. |> Enum.map(fn strategy_entry ->
  91. with [_strategy, dependency] <- String.split(strategy_entry, ":") do
  92. dependency
  93. else
  94. [strategy] -> "ueberauth_#{strategy}"
  95. end
  96. end)
  97. for s <- oauth_strategy_packages, do: {String.to_atom(s), ">= 0.0.0"}
  98. end
  99. # Specifies your project dependencies.
  100. #
  101. # Type `mix help deps` for examples and options.
  102. defp deps do
  103. [
  104. {:phoenix, "~> 1.6.0"},
  105. {:phoenix_ecto, "~> 4.4.0"},
  106. {:ecto_enum, "~> 1.4"},
  107. {:postgrex, ">= 0.0.0"},
  108. {:phoenix_html, "~> 3.1"},
  109. {:phoenix_live_reload, "~> 1.3.3", only: :dev},
  110. {:phoenix_live_view, "~> 0.17.1"},
  111. {:phoenix_live_dashboard, "~> 0.6.2"},
  112. {:telemetry_metrics, "~> 0.6.1"},
  113. {:telemetry_poller, "~> 1.0"},
  114. {:tzdata, "~> 1.0.3"},
  115. {:plug_cowboy, "~> 2.3"},
  116. # oban 2.14 requires Elixir 1.12+
  117. {:oban, "~> 2.13.4"},
  118. {:gettext,
  119. git: "https://github.com/tusooa/gettext.git",
  120. ref: "72fb2496b6c5280ed911bdc3756890e7f38a4808",
  121. override: true},
  122. {:bcrypt_elixir, "~> 2.2"},
  123. {:trailing_format_plug, "~> 0.0.7"},
  124. {:fast_sanitize, "~> 0.2.0"},
  125. {:html_entities, "~> 0.5", override: true},
  126. {:calendar, "~> 1.0"},
  127. {:cachex, "~> 3.2"},
  128. {:poison, "~> 3.0", override: true},
  129. {:tesla, "~> 1.4.0", override: true},
  130. {:castore, "~> 0.1"},
  131. {:cowlib, "~> 2.9", override: true},
  132. {:gun, "~> 2.0.0-rc.1", override: true},
  133. {:finch, "~> 0.10.0"},
  134. {:jason, "~> 1.2"},
  135. {:mogrify, "~> 0.9.1"},
  136. {:ex_aws, "~> 2.1.6"},
  137. {:ex_aws_s3, "~> 2.0"},
  138. {:sweet_xml, "~> 0.7.2"},
  139. # earmark 1.4.23 requires Elixir 1.12+
  140. {:earmark, "1.4.22"},
  141. {:bbcode_pleroma, "~> 0.2.0"},
  142. {:cors_plug, "~> 2.0"},
  143. {:web_push_encryption, "~> 0.3.1"},
  144. {:swoosh, "~> 1.0"},
  145. {:phoenix_swoosh, "~> 1.1"},
  146. {:gen_smtp, "~> 0.13"},
  147. {:ex_syslogger, "~> 1.4"},
  148. {:floki, "~> 0.27"},
  149. {:timex, "~> 3.6"},
  150. {:ueberauth, "~> 0.4"},
  151. {:linkify, "~> 0.5.3"},
  152. {:http_signatures, "~> 0.1.1"},
  153. {:telemetry, "~> 1.0.0", override: true},
  154. {:poolboy, "~> 1.5"},
  155. {:prometheus, "~> 4.6"},
  156. {:prometheus_ex,
  157. git: "https://github.com/lanodan/prometheus.ex.git",
  158. branch: "fix/elixir-1.14",
  159. override: true},
  160. {:prometheus_plugs, "~> 1.1"},
  161. {:prometheus_phoenix, "~> 1.3"},
  162. # Note: once `prometheus_phx` is integrated into `prometheus_phoenix`, remove the former:
  163. {:prometheus_phx,
  164. git: "https://git.pleroma.social/pleroma/elixir-libraries/prometheus-phx.git",
  165. branch: "no-logging"},
  166. {:prometheus_ecto, "~> 1.4"},
  167. {:recon, "~> 2.5"},
  168. {:joken, "~> 2.0"},
  169. {:benchee, "~> 1.0"},
  170. {:pot, "~> 1.0"},
  171. {:ex_const, "~> 0.2"},
  172. {:plug_static_index_html, "~> 1.0.0"},
  173. {:flake_id, "~> 0.1.0"},
  174. {:concurrent_limiter, "~> 0.1.1"},
  175. {:remote_ip,
  176. git: "https://git.pleroma.social/pleroma/remote_ip.git",
  177. ref: "b647d0deecaa3acb140854fe4bda5b7e1dc6d1c8"},
  178. {:captcha,
  179. git: "https://git.pleroma.social/pleroma/elixir-libraries/elixir-captcha.git",
  180. ref: "e0f16822d578866e186a0974d65ad58cddc1e2ab"},
  181. {:restarter, path: "./restarter"},
  182. {:majic, "~> 1.0"},
  183. {:eblurhash, "~> 1.2.2"},
  184. {:open_api_spex, "~> 3.16"},
  185. {:ecto_psql_extras, "~> 0.6"},
  186. # indirect dependency version override
  187. {:plug, "~> 1.10.4", override: true},
  188. ## dev & test
  189. {:ex_doc, "~> 0.22", only: :dev, runtime: false},
  190. {:ex_machina, "~> 2.4", only: :test},
  191. {:credo, "~> 1.6", only: [:dev, :test], runtime: false},
  192. {:mock, "~> 0.3.5", only: :test},
  193. {:covertool, "~> 2.0", only: :test},
  194. {:hackney, "~> 1.18.0", override: true},
  195. {:mox, "~> 1.0", only: :test},
  196. {:websockex, "~> 0.4.3", only: :test}
  197. ] ++ oauth_deps()
  198. end
  199. # Aliases are shortcuts or tasks specific to the current project.
  200. # For example, to create, migrate and run the seeds file at once:
  201. #
  202. # $ mix ecto.setup
  203. #
  204. # See the documentation for `Mix` for more info on aliases.
  205. defp aliases do
  206. [
  207. "ecto.migrate": ["pleroma.ecto.migrate"],
  208. "ecto.rollback": ["pleroma.ecto.rollback"],
  209. "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
  210. "ecto.reset": ["ecto.drop", "ecto.setup"],
  211. test: ["ecto.create --quiet", "ecto.migrate", "test"],
  212. docs: ["pleroma.docs", "docs"],
  213. analyze: ["credo --strict --only=warnings,todo,fixme,consistency,readability"],
  214. copyright: &add_copyright/1,
  215. "copyright.bump": &bump_copyright/1
  216. ]
  217. end
  218. # Builds a version string made of:
  219. # * the application version
  220. # * a pre-release if ahead of the tag: the describe string (-count-commithash)
  221. # * branch name
  222. # * build metadata:
  223. # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
  224. # * the mix environment if different than prod
  225. defp version(version) do
  226. identifier_filter = ~r/[^0-9a-z\-]+/i
  227. git_available? = match?({_output, 0}, System.cmd("sh", ["-c", "command -v git"]))
  228. dotgit_present? = File.exists?(".git")
  229. git_pre_release =
  230. if git_available? and dotgit_present? do
  231. {tag, tag_err} =
  232. System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true)
  233. {describe, describe_err} = System.cmd("git", ["describe", "--tags", "--abbrev=8"])
  234. {commit_hash, commit_hash_err} = System.cmd("git", ["rev-parse", "--short", "HEAD"])
  235. # Pre-release version, denoted from patch version with a hyphen
  236. cond do
  237. tag_err == 0 and describe_err == 0 ->
  238. describe
  239. |> String.trim()
  240. |> String.replace(String.trim(tag), "")
  241. |> String.trim_leading("-")
  242. |> String.trim()
  243. commit_hash_err == 0 ->
  244. "0-g" <> String.trim(commit_hash)
  245. true ->
  246. nil
  247. end
  248. end
  249. # Branch name as pre-release version component, denoted with a dot
  250. branch_name =
  251. with true <- git_available?,
  252. true <- dotgit_present?,
  253. {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
  254. branch_name <- String.trim(branch_name),
  255. branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
  256. true <-
  257. !Enum.any?(["master", "HEAD", "release/", "stable"], fn name ->
  258. String.starts_with?(name, branch_name)
  259. end) do
  260. branch_name =
  261. branch_name
  262. |> String.trim()
  263. |> String.replace(identifier_filter, "-")
  264. branch_name
  265. else
  266. _ -> ""
  267. end
  268. build_name =
  269. cond do
  270. name = Application.get_env(:pleroma, :build_name) -> name
  271. name = System.get_env("PLEROMA_BUILD_NAME") -> name
  272. true -> nil
  273. end
  274. env_name = if Mix.env() != :prod, do: to_string(Mix.env())
  275. env_override = System.get_env("PLEROMA_BUILD_ENV")
  276. env_name =
  277. case env_override do
  278. nil -> env_name
  279. env_override when env_override in ["", "prod"] -> nil
  280. env_override -> env_override
  281. end
  282. # Pre-release version, denoted by appending a hyphen
  283. # and a series of dot separated identifiers
  284. pre_release =
  285. [git_pre_release, branch_name]
  286. |> Enum.filter(fn string -> string && string != "" end)
  287. |> Enum.join(".")
  288. |> (fn
  289. "" -> nil
  290. string -> "-" <> String.replace(string, identifier_filter, "-")
  291. end).()
  292. # Build metadata, denoted with a plus sign
  293. build_metadata =
  294. [build_name, env_name]
  295. |> Enum.filter(fn string -> string && string != "" end)
  296. |> Enum.join(".")
  297. |> (fn
  298. "" -> nil
  299. string -> "+" <> String.replace(string, identifier_filter, "-")
  300. end).()
  301. [version, pre_release, build_metadata]
  302. |> Enum.filter(fn string -> string && string != "" end)
  303. |> Enum.join()
  304. end
  305. defp add_copyright(_) do
  306. year = NaiveDateTime.utc_now().year
  307. template = ~s[\
  308. # Pleroma: A lightweight social networking server
  309. # Copyright © 2017-#{year} Pleroma Authors <https://pleroma.social/>
  310. # SPDX-License-Identifier: AGPL-3.0-only
  311. ] |> String.replace("\n", "\\n")
  312. find = "find lib test priv -type f \\( -name '*.ex' -or -name '*.exs' \\) -exec "
  313. grep = "grep -L '# Copyright © [0-9\-]* Pleroma' {} \\;"
  314. xargs = "xargs -n1 sed -i'' '1s;^;#{template};'"
  315. :os.cmd(String.to_charlist("#{find}#{grep} | #{xargs}"))
  316. end
  317. defp bump_copyright(_) do
  318. year = NaiveDateTime.utc_now().year
  319. find = "find lib test priv -type f \\( -name '*.ex' -or -name '*.exs' \\)"
  320. xargs =
  321. "xargs sed -i'' 's;# Copyright © [0-9\-]* Pleroma.*$;# Copyright © 2017-#{year} Pleroma Authors <https://pleroma.social/>;'"
  322. :os.cmd(String.to_charlist("#{find} | #{xargs}"))
  323. end
  324. end