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.

364 lines
12KB

  1. defmodule Pleroma.Mixfile do
  2. use Mix.Project
  3. def project do
  4. [
  5. app: :pleroma,
  6. version: version("2.3.0"),
  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, nil}]
  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.4.4"},
  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,
  128. github: "ninenines/gun", ref: "921c47146b2d9567eac7e9a4d2ccc60fffd4f327", override: true},
  129. {:jason, "~> 1.2"},
  130. {:mogrify, "~> 0.7.4"},
  131. {:ex_aws, "~> 2.1.6"},
  132. {:ex_aws_s3, "~> 2.0"},
  133. {:sweet_xml, "~> 0.6.6"},
  134. {:earmark, "1.4.3"},
  135. {:bbcode_pleroma, "~> 0.2.0"},
  136. {:crypt,
  137. git: "https://git.pleroma.social/pleroma/elixir-libraries/crypt.git",
  138. ref: "cf2aa3f11632e8b0634810a15b3e612c7526f6a3"},
  139. {:cors_plug, "~> 2.0"},
  140. {:web_push_encryption, "~> 0.3"},
  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.0"},
  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, "~> 0.11"},
  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. {:open_api_spex,
  187. git: "https://git.pleroma.social/pleroma/elixir-libraries/open_api_spex.git",
  188. ref: "f296ac0924ba3cf79c7a588c4c252889df4c2edd"},
  189. ## dev & test
  190. {:ex_doc, "~> 0.22", only: :dev, runtime: false},
  191. {:ex_machina, "~> 2.4", only: :test},
  192. {:credo, "~> 1.4", only: [:dev, :test], runtime: false},
  193. {:mock, "~> 0.3.5", only: :test},
  194. # temporary downgrade for excoveralls, hackney until hackney max_connections bug will be fixed
  195. {:excoveralls, "0.12.3", only: :test},
  196. {:hackney,
  197. git: "https://git.pleroma.social/pleroma/elixir-libraries/hackney.git",
  198. ref: "7d7119f0651515d6d7669c78393fd90950a3ec6e",
  199. override: true},
  200. {:mox, "~> 1.0", only: :test},
  201. {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test}
  202. ] ++ oauth_deps()
  203. end
  204. # Aliases are shortcuts or tasks specific to the current project.
  205. # For example, to create, migrate and run the seeds file at once:
  206. #
  207. # $ mix ecto.setup
  208. #
  209. # See the documentation for `Mix` for more info on aliases.
  210. defp aliases do
  211. [
  212. "ecto.migrate": ["pleroma.ecto.migrate"],
  213. "ecto.rollback": ["pleroma.ecto.rollback"],
  214. "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
  215. "ecto.reset": ["ecto.drop", "ecto.setup"],
  216. test: ["ecto.create --quiet", "ecto.migrate", "test"],
  217. docs: ["pleroma.docs", "docs"],
  218. analyze: ["credo --strict --only=warnings,todo,fixme,consistency,readability"],
  219. copyright: &add_copyright/1,
  220. "copyright.bump": &bump_copyright/1
  221. ]
  222. end
  223. # Builds a version string made of:
  224. # * the application version
  225. # * a pre-release if ahead of the tag: the describe string (-count-commithash)
  226. # * branch name
  227. # * build metadata:
  228. # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
  229. # * the mix environment if different than prod
  230. defp version(version) do
  231. identifier_filter = ~r/[^0-9a-z\-]+/i
  232. git_available? = match?({_output, 0}, System.cmd("sh", ["-c", "command -v git"]))
  233. git_pre_release =
  234. if git_available? do
  235. {tag, tag_err} =
  236. System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true)
  237. {describe, describe_err} = System.cmd("git", ["describe", "--tags", "--abbrev=8"])
  238. {commit_hash, commit_hash_err} = System.cmd("git", ["rev-parse", "--short", "HEAD"])
  239. # Pre-release version, denoted from patch version with a hyphen
  240. cond do
  241. tag_err == 0 and describe_err == 0 ->
  242. describe
  243. |> String.trim()
  244. |> String.replace(String.trim(tag), "")
  245. |> String.trim_leading("-")
  246. |> String.trim()
  247. commit_hash_err == 0 ->
  248. "0-g" <> String.trim(commit_hash)
  249. true ->
  250. nil
  251. end
  252. end
  253. # Branch name as pre-release version component, denoted with a dot
  254. branch_name =
  255. with true <- git_available?,
  256. {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
  257. branch_name <- String.trim(branch_name),
  258. branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
  259. true <-
  260. !Enum.any?(["master", "HEAD", "release/", "stable"], fn name ->
  261. String.starts_with?(name, branch_name)
  262. end) do
  263. branch_name =
  264. branch_name
  265. |> String.trim()
  266. |> String.replace(identifier_filter, "-")
  267. branch_name
  268. else
  269. _ -> ""
  270. end
  271. build_name =
  272. cond do
  273. name = Application.get_env(:pleroma, :build_name) -> name
  274. name = System.get_env("PLEROMA_BUILD_NAME") -> name
  275. true -> nil
  276. end
  277. env_name = if Mix.env() != :prod, do: to_string(Mix.env())
  278. env_override = System.get_env("PLEROMA_BUILD_ENV")
  279. env_name =
  280. case env_override do
  281. nil -> env_name
  282. env_override when env_override in ["", "prod"] -> nil
  283. env_override -> env_override
  284. end
  285. # Pre-release version, denoted by appending a hyphen
  286. # and a series of dot separated identifiers
  287. pre_release =
  288. [git_pre_release, branch_name]
  289. |> Enum.filter(fn string -> string && string != "" end)
  290. |> Enum.join(".")
  291. |> (fn
  292. "" -> nil
  293. string -> "-" <> String.replace(string, identifier_filter, "-")
  294. end).()
  295. # Build metadata, denoted with a plus sign
  296. build_metadata =
  297. [build_name, env_name]
  298. |> Enum.filter(fn string -> string && string != "" end)
  299. |> Enum.join(".")
  300. |> (fn
  301. "" -> nil
  302. string -> "+" <> String.replace(string, identifier_filter, "-")
  303. end).()
  304. [version, pre_release, build_metadata]
  305. |> Enum.filter(fn string -> string && string != "" end)
  306. |> Enum.join()
  307. end
  308. defp add_copyright(_) do
  309. year = NaiveDateTime.utc_now().year
  310. template = ~s[\
  311. # Pleroma: A lightweight social networking server
  312. # Copyright © 2017-#{year} Pleroma Authors <https://pleroma.social/>
  313. # SPDX-License-Identifier: AGPL-3.0-only
  314. ] |> String.replace("\n", "\\n")
  315. find = "find lib test priv -type f \\( -name '*.ex' -or -name '*.exs' \\) -exec "
  316. grep = "grep -L '# Copyright © [0-9\-]* Pleroma' {} \\;"
  317. xargs = "xargs -n1 sed -i'' '1s;^;#{template};'"
  318. :os.cmd(String.to_charlist("#{find}#{grep} | #{xargs}"))
  319. end
  320. defp bump_copyright(_) do
  321. year = NaiveDateTime.utc_now().year
  322. find = "find lib test priv -type f \\( -name '*.ex' -or -name '*.exs' \\)"
  323. xargs =
  324. "xargs sed -i'' 's;# Copyright © [0-9\-]* Pleroma.*$;# Copyright © 2017-#{year} Pleroma Authors <https://pleroma.social/>;'"
  325. :os.cmd(String.to_charlist("#{find} | #{xargs}"))
  326. end
  327. end