Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

276 lines
9.2KB

  1. defmodule Pleroma.Mixfile do
  2. use Mix.Project
  3. def project do
  4. [
  5. app: :pleroma,
  6. version: version("1.1.50"),
  7. elixir: "~> 1.8",
  8. elixirc_paths: elixirc_paths(Mix.env()),
  9. compilers: [:phoenix, :gettext] ++ Mix.compilers(),
  10. elixirc_options: [warnings_as_errors: true],
  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],
  39. steps: [:assemble, &copy_files/1, &copy_nginx_config/1]
  40. ]
  41. ]
  42. ]
  43. end
  44. def copy_files(%{path: target_path} = release) do
  45. File.cp_r!("./rel/files", target_path)
  46. release
  47. end
  48. def copy_nginx_config(%{path: target_path} = release) do
  49. File.cp!(
  50. "./installation/pleroma.nginx",
  51. Path.join([target_path, "installation", "pleroma.nginx"])
  52. )
  53. release
  54. end
  55. # Configuration for the OTP application.
  56. #
  57. # Type `mix help compile.app` for more information.
  58. def application do
  59. [
  60. mod: {Pleroma.Application, []},
  61. extra_applications: [:logger, :runtime_tools, :comeonin, :quack, :fast_sanitize, :swarm],
  62. included_applications: [:ex_syslogger]
  63. ]
  64. end
  65. # Specifies which paths to compile per environment.
  66. defp elixirc_paths(:benchmark), do: ["lib", "benchmarks"]
  67. defp elixirc_paths(:test), do: ["lib", "test/support"]
  68. defp elixirc_paths(_), do: ["lib"]
  69. # Specifies OAuth dependencies.
  70. defp oauth_deps do
  71. oauth_strategy_packages =
  72. System.get_env("OAUTH_CONSUMER_STRATEGIES")
  73. |> to_string()
  74. |> String.split()
  75. |> Enum.map(fn strategy_entry ->
  76. with [_strategy, dependency] <- String.split(strategy_entry, ":") do
  77. dependency
  78. else
  79. [strategy] -> "ueberauth_#{strategy}"
  80. end
  81. end)
  82. for s <- oauth_strategy_packages, do: {String.to_atom(s), ">= 0.0.0"}
  83. end
  84. # Specifies your project dependencies.
  85. #
  86. # Type `mix help deps` for examples and options.
  87. defp deps do
  88. [
  89. {:phoenix, "~> 1.4.8"},
  90. {:tzdata, "~> 0.5.21"},
  91. {:plug_cowboy, "~> 2.0"},
  92. {:phoenix_pubsub, "~> 1.1"},
  93. {:phoenix_ecto, "~> 4.0"},
  94. {:ecto_enum, "~> 1.4"},
  95. {:ecto_sql, "~> 3.2"},
  96. {:postgrex, ">= 0.13.5"},
  97. {:oban, "~> 0.12.0"},
  98. {:quantum, "~> 2.3"},
  99. {:gettext, "~> 0.15"},
  100. {:comeonin, "~> 4.1.1"},
  101. {:pbkdf2_elixir, "~> 0.12.3"},
  102. {:trailing_format_plug, "~> 0.0.7"},
  103. {:fast_sanitize, "~> 0.1"},
  104. {:html_entities, "~> 0.5", override: true},
  105. {:phoenix_html, "~> 2.10"},
  106. {:calendar, "~> 0.17.4"},
  107. {:cachex, "~> 3.0.2"},
  108. {:poison, "~> 3.0", override: true},
  109. {:tesla, "~> 1.3", override: true},
  110. {:jason, "~> 1.0"},
  111. {:mogrify, "~> 0.6.1"},
  112. {:ex_aws, "~> 2.1"},
  113. {:ex_aws_s3, "~> 2.0"},
  114. {:sweet_xml, "~> 0.6.6"},
  115. {:earmark, "~> 1.3"},
  116. {:bbcode, "~> 0.1.1"},
  117. {:ex_machina, "~> 2.3", only: :test},
  118. {:credo, "~> 0.9.3", only: [:dev, :test]},
  119. {:mock, "~> 0.3.3", only: :test},
  120. {:crypt,
  121. git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
  122. {:cors_plug, "~> 1.5"},
  123. {:ex_doc, "~> 0.21", only: :dev, runtime: false},
  124. {:web_push_encryption, "~> 0.2.1"},
  125. {:swoosh, "~> 0.23.2"},
  126. {:phoenix_swoosh, "~> 0.2"},
  127. {:gen_smtp, "~> 0.13"},
  128. {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
  129. {:floki, "~> 0.23.0"},
  130. {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"},
  131. {:timex, "~> 3.5"},
  132. {:ueberauth, "~> 0.4"},
  133. {:auto_linker,
  134. git: "https://git.pleroma.social/pleroma/auto_linker.git",
  135. ref: "95e8188490e97505c56636c1379ffdf036c1fdde"},
  136. {:http_signatures,
  137. git: "https://git.pleroma.social/pleroma/http_signatures.git",
  138. ref: "293d77bb6f4a67ac8bde1428735c3b42f22cbb30"},
  139. {:telemetry, "~> 0.3"},
  140. {:poolboy, "~> 1.5"},
  141. {:prometheus_ex, "~> 3.0"},
  142. {:prometheus_plugs, "~> 1.1"},
  143. {:prometheus_phoenix, "~> 1.3"},
  144. {:prometheus_ecto, "~> 1.4"},
  145. {:recon, github: "ferd/recon", tag: "2.4.0"},
  146. {:quack, "~> 0.1.1"},
  147. {:joken, "~> 2.0"},
  148. {:benchee, "~> 1.0"},
  149. {:esshd, "~> 0.1.0", runtime: Application.get_env(:esshd, :enabled, false)},
  150. {:ex_const, "~> 0.2"},
  151. {:plug_static_index_html, "~> 1.0.0"},
  152. {:excoveralls, "~> 0.11.1", only: :test},
  153. {:flake_id, "~> 0.1.0"},
  154. {:remote_ip,
  155. git: "https://git.pleroma.social/pleroma/remote_ip.git",
  156. ref: "825dc00aaba5a1b7c4202a532b696b595dd3bcb3"},
  157. {:captcha,
  158. git: "https://git.pleroma.social/pleroma/elixir-libraries/elixir-captcha.git",
  159. ref: "e0f16822d578866e186a0974d65ad58cddc1e2ab"},
  160. {:mox, "~> 0.5", only: :test}
  161. ] ++ oauth_deps()
  162. end
  163. # Aliases are shortcuts or tasks specific to the current project.
  164. # For example, to create, migrate and run the seeds file at once:
  165. #
  166. # $ mix ecto.setup
  167. #
  168. # See the documentation for `Mix` for more info on aliases.
  169. defp aliases do
  170. [
  171. "ecto.migrate": ["pleroma.ecto.migrate"],
  172. "ecto.rollback": ["pleroma.ecto.rollback"],
  173. "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
  174. "ecto.reset": ["ecto.drop", "ecto.setup"],
  175. test: ["ecto.create --quiet", "ecto.migrate", "test"],
  176. docs: ["pleroma.docs", "docs"]
  177. ]
  178. end
  179. # Builds a version string made of:
  180. # * the application version
  181. # * a pre-release if ahead of the tag: the describe string (-count-commithash)
  182. # * branch name
  183. # * build metadata:
  184. # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
  185. # * the mix environment if different than prod
  186. defp version(version) do
  187. identifier_filter = ~r/[^0-9a-z\-]+/i
  188. # Pre-release version, denoted from patch version with a hyphen
  189. git_pre_release =
  190. with {tag, 0} <-
  191. System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true),
  192. {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]) do
  193. describe
  194. |> String.trim()
  195. |> String.replace(String.trim(tag), "")
  196. |> String.trim_leading("-")
  197. |> String.trim()
  198. else
  199. _ ->
  200. {commit_hash, 0} = System.cmd("git", ["rev-parse", "--short", "HEAD"])
  201. "0-g" <> String.trim(commit_hash)
  202. end
  203. # Branch name as pre-release version component, denoted with a dot
  204. branch_name =
  205. with {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
  206. branch_name <- String.trim(branch_name),
  207. branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
  208. true <-
  209. !Enum.any?(["master", "HEAD", "release/", "stable"], fn name ->
  210. String.starts_with?(name, branch_name)
  211. end) do
  212. branch_name =
  213. branch_name
  214. |> String.trim()
  215. |> String.replace(identifier_filter, "-")
  216. branch_name
  217. end
  218. build_name =
  219. cond do
  220. name = Application.get_env(:pleroma, :build_name) -> name
  221. name = System.get_env("PLEROMA_BUILD_NAME") -> name
  222. true -> nil
  223. end
  224. env_name = if Mix.env() != :prod, do: to_string(Mix.env())
  225. env_override = System.get_env("PLEROMA_BUILD_ENV")
  226. env_name =
  227. case env_override do
  228. nil -> env_name
  229. env_override when env_override in ["", "prod"] -> nil
  230. env_override -> env_override
  231. end
  232. # Pre-release version, denoted by appending a hyphen
  233. # and a series of dot separated identifiers
  234. pre_release =
  235. [git_pre_release, branch_name]
  236. |> Enum.filter(fn string -> string && string != "" end)
  237. |> Enum.join(".")
  238. |> (fn
  239. "" -> nil
  240. string -> "-" <> String.replace(string, identifier_filter, "-")
  241. end).()
  242. # Build metadata, denoted with a plus sign
  243. build_metadata =
  244. [build_name, env_name]
  245. |> Enum.filter(fn string -> string && string != "" end)
  246. |> Enum.join(".")
  247. |> (fn
  248. "" -> nil
  249. string -> "+" <> String.replace(string, identifier_filter, "-")
  250. end).()
  251. [version, pre_release, build_metadata]
  252. |> Enum.filter(fn string -> string && string != "" end)
  253. |> Enum.join()
  254. end
  255. end