Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

363 lines
12KB

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