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.

339 lines
11KB

  1. defmodule Pleroma.Mixfile do
  2. use Mix.Project
  3. def project do
  4. [
  5. app: :pleroma,
  6. version: version("2.2.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/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. 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.1.0"},
  115. {:gettext, "~> 0.18"},
  116. {:pbkdf2_elixir, "~> 1.2"},
  117. {:bcrypt_elixir, "~> 2.2"},
  118. {:trailing_format_plug, "~> 0.0.7"},
  119. {:fast_sanitize, "~> 0.2.0"},
  120. {:html_entities, "~> 0.5", override: true},
  121. {:phoenix_html, "~> 2.14"},
  122. {:calendar, "~> 1.0"},
  123. {:cachex, "~> 3.2"},
  124. {:poison, "~> 3.0", override: true},
  125. {:tesla,
  126. git: "https://github.com/teamon/tesla/",
  127. ref: "9f7261ca49f9f901ceb73b60219ad6f8a9f6aa30",
  128. override: true},
  129. {:castore, "~> 0.1"},
  130. {:cowlib, "~> 2.9", override: true},
  131. {:gun,
  132. github: "ninenines/gun", ref: "921c47146b2d9567eac7e9a4d2ccc60fffd4f327", override: true},
  133. {:jason, "~> 1.2"},
  134. {:mogrify, "~> 0.7.4"},
  135. {:ex_aws, "~> 2.1.6"},
  136. {:ex_aws_s3, "~> 2.0"},
  137. {:sweet_xml, "~> 0.6.6"},
  138. {:earmark, "1.4.3"},
  139. {:bbcode_pleroma, "~> 0.2.0"},
  140. {:crypt,
  141. git: "https://github.com/msantos/crypt.git",
  142. ref: "f63a705f92c26955977ee62a313012e309a4d77a"},
  143. {:cors_plug, "~> 2.0"},
  144. {:web_push_encryption, "~> 0.3"},
  145. {:swoosh, "~> 1.0"},
  146. {:phoenix_swoosh, "~> 0.3"},
  147. {:gen_smtp, "~> 0.13"},
  148. {:ex_syslogger, "~> 1.4"},
  149. {:floki, "~> 0.27"},
  150. {:timex, "~> 3.6"},
  151. {:ueberauth, "~> 0.4"},
  152. {:linkify, "~> 0.4.1"},
  153. {:http_signatures, "~> 0.1.0"},
  154. {:telemetry, "~> 0.3"},
  155. {:poolboy, "~> 1.5"},
  156. {:prometheus, "~> 4.6"},
  157. {:prometheus_ex,
  158. git: "https://git.pleroma.social/pleroma/elixir-libraries/prometheus.ex.git",
  159. ref: "a4e9beb3c1c479d14b352fd9d6dd7b1f6d7deee5",
  160. override: true},
  161. {:prometheus_plugs, "~> 1.1"},
  162. {:prometheus_phoenix, "~> 1.3"},
  163. # Note: once `prometheus_phx` is integrated into `prometheus_phoenix`, remove the former:
  164. {:prometheus_phx,
  165. git: "https://git.pleroma.social/pleroma/elixir-libraries/prometheus-phx.git",
  166. branch: "no-logging"},
  167. {:prometheus_ecto, "~> 1.4"},
  168. {:recon, "~> 2.5"},
  169. {:quack, "~> 0.1.1"},
  170. {:joken, "~> 2.0"},
  171. {:benchee, "~> 1.0"},
  172. {:pot, "~> 0.11"},
  173. {:esshd, "~> 0.1.0", runtime: Application.get_env(:esshd, :enabled, false)},
  174. {:ex_const, "~> 0.2"},
  175. {:plug_static_index_html, "~> 1.0.0"},
  176. {:flake_id, "~> 0.1.0"},
  177. {:concurrent_limiter,
  178. git: "https://git.pleroma.social/pleroma/elixir-libraries/concurrent_limiter.git",
  179. ref: "d81be41024569330f296fc472e24198d7499ba78"},
  180. {:remote_ip,
  181. git: "https://git.pleroma.social/pleroma/remote_ip.git",
  182. ref: "b647d0deecaa3acb140854fe4bda5b7e1dc6d1c8"},
  183. {:captcha,
  184. git: "https://git.pleroma.social/pleroma/elixir-libraries/elixir-captcha.git",
  185. ref: "e0f16822d578866e186a0974d65ad58cddc1e2ab"},
  186. {:restarter, path: "./restarter"},
  187. {:majic,
  188. git: "https://git.pleroma.social/pleroma/elixir-libraries/majic", branch: "develop"},
  189. {:open_api_spex,
  190. git: "https://git.pleroma.social/pleroma/elixir-libraries/open_api_spex.git",
  191. ref: "f296ac0924ba3cf79c7a588c4c252889df4c2edd"},
  192. ## dev & test
  193. {:ex_doc, "~> 0.22", only: :dev, runtime: false},
  194. {:ex_machina, "~> 2.4", only: :test},
  195. {:credo, "~> 1.4", only: [:dev, :test], runtime: false},
  196. {:mock, "~> 0.3.5", only: :test},
  197. # temporary downgrade for excoveralls, hackney until hackney max_connections bug will be fixed
  198. {:excoveralls, "0.12.3", only: :test},
  199. {:hackney,
  200. git: "https://git.pleroma.social/pleroma/elixir-libraries/hackney.git",
  201. ref: "7d7119f0651515d6d7669c78393fd90950a3ec6e",
  202. override: true},
  203. {:mox, "~> 0.5", only: :test},
  204. {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test}
  205. ] ++ oauth_deps()
  206. end
  207. # Aliases are shortcuts or tasks specific to the current project.
  208. # For example, to create, migrate and run the seeds file at once:
  209. #
  210. # $ mix ecto.setup
  211. #
  212. # See the documentation for `Mix` for more info on aliases.
  213. defp aliases do
  214. [
  215. "ecto.migrate": ["pleroma.ecto.migrate"],
  216. "ecto.rollback": ["pleroma.ecto.rollback"],
  217. "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
  218. "ecto.reset": ["ecto.drop", "ecto.setup"],
  219. test: ["ecto.create --quiet", "ecto.migrate", "test"],
  220. docs: ["pleroma.docs", "docs"],
  221. analyze: ["credo --strict --only=warnings,todo,fixme,consistency,readability"]
  222. ]
  223. end
  224. # Builds a version string made of:
  225. # * the application version
  226. # * a pre-release if ahead of the tag: the describe string (-count-commithash)
  227. # * branch name
  228. # * build metadata:
  229. # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
  230. # * the mix environment if different than prod
  231. defp version(version) do
  232. identifier_filter = ~r/[^0-9a-z\-]+/i
  233. git_available? = match?({_output, 0}, System.cmd("sh", ["-c", "command -v git"]))
  234. git_pre_release =
  235. if git_available? do
  236. {tag, tag_err} =
  237. System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true)
  238. {describe, describe_err} = System.cmd("git", ["describe", "--tags", "--abbrev=8"])
  239. {commit_hash, commit_hash_err} = System.cmd("git", ["rev-parse", "--short", "HEAD"])
  240. # Pre-release version, denoted from patch version with a hyphen
  241. cond do
  242. tag_err == 0 and describe_err == 0 ->
  243. describe
  244. |> String.trim()
  245. |> String.replace(String.trim(tag), "")
  246. |> String.trim_leading("-")
  247. |> String.trim()
  248. commit_hash_err == 0 ->
  249. "0-g" <> String.trim(commit_hash)
  250. true ->
  251. nil
  252. end
  253. end
  254. # Branch name as pre-release version component, denoted with a dot
  255. branch_name =
  256. with true <- git_available?,
  257. {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
  258. branch_name <- String.trim(branch_name),
  259. branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
  260. true <-
  261. !Enum.any?(["master", "HEAD", "release/", "stable"], fn name ->
  262. String.starts_with?(name, branch_name)
  263. end) do
  264. branch_name =
  265. branch_name
  266. |> String.trim()
  267. |> String.replace(identifier_filter, "-")
  268. branch_name
  269. else
  270. _ -> ""
  271. end
  272. build_name =
  273. cond do
  274. name = Application.get_env(:pleroma, :build_name) -> name
  275. name = System.get_env("PLEROMA_BUILD_NAME") -> name
  276. true -> nil
  277. end
  278. env_name = if Mix.env() != :prod, do: to_string(Mix.env())
  279. env_override = System.get_env("PLEROMA_BUILD_ENV")
  280. env_name =
  281. case env_override do
  282. nil -> env_name
  283. env_override when env_override in ["", "prod"] -> nil
  284. env_override -> env_override
  285. end
  286. # Pre-release version, denoted by appending a hyphen
  287. # and a series of dot separated identifiers
  288. pre_release =
  289. [git_pre_release, branch_name]
  290. |> Enum.filter(fn string -> string && string != "" end)
  291. |> Enum.join(".")
  292. |> (fn
  293. "" -> nil
  294. string -> "-" <> String.replace(string, identifier_filter, "-")
  295. end).()
  296. # Build metadata, denoted with a plus sign
  297. build_metadata =
  298. [build_name, env_name]
  299. |> Enum.filter(fn string -> string && string != "" end)
  300. |> Enum.join(".")
  301. |> (fn
  302. "" -> nil
  303. string -> "+" <> String.replace(string, identifier_filter, "-")
  304. end).()
  305. [version, pre_release, build_metadata]
  306. |> Enum.filter(fn string -> string && string != "" end)
  307. |> Enum.join()
  308. end
  309. end