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.

279 lines
9.3KB

  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],
  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_sql, "~> 3.2"},
  95. {:postgrex, ">= 0.13.5"},
  96. {:oban, "~> 0.8.1"},
  97. {:quantum, "~> 2.3"},
  98. {:gettext, "~> 0.15"},
  99. {:comeonin, "~> 4.1.1"},
  100. {:pbkdf2_elixir, "~> 0.12.3"},
  101. {:trailing_format_plug, "~> 0.0.7"},
  102. {:html_sanitize_ex, "~> 1.3.0"},
  103. {:html_entities, "~> 0.4"},
  104. {:phoenix_html, "~> 2.10"},
  105. {:calendar, "~> 0.17.4"},
  106. {:cachex, "~> 3.0.2"},
  107. {:poison, "~> 3.0", override: true},
  108. {:tesla, "~> 1.3", override: true},
  109. {:jason, "~> 1.0"},
  110. {:mogrify, "~> 0.6.1"},
  111. {:ex_aws, "~> 2.1"},
  112. {:ex_aws_s3, "~> 2.0"},
  113. {:sweet_xml, "~> 0.6.6"},
  114. {:earmark, "~> 1.3"},
  115. {:bbcode, "~> 0.1.1"},
  116. {:ex_machina, "~> 2.3", only: :test},
  117. {:credo, "~> 0.9.3", only: [:dev, :test]},
  118. {:mock, "~> 0.3.3", only: :test},
  119. {:crypt,
  120. git: "https://github.com/msantos/crypt", ref: "1f2b58927ab57e72910191a7ebaeff984382a1d3"},
  121. {:cors_plug, "~> 1.5"},
  122. {:ex_doc, "~> 0.21", only: :dev, runtime: false},
  123. {:web_push_encryption, "~> 0.2.1"},
  124. {:swoosh, "~> 0.23.2"},
  125. {:phoenix_swoosh, "~> 0.2"},
  126. {:gen_smtp, "~> 0.13"},
  127. {:websocket_client, git: "https://github.com/jeremyong/websocket_client.git", only: :test},
  128. {:floki, "~> 0.23.0"},
  129. {:ex_syslogger, github: "slashmili/ex_syslogger", tag: "1.4.0"},
  130. {:timex, "~> 3.5"},
  131. {:ueberauth, "~> 0.4"},
  132. {:auto_linker,
  133. git: "https://git.pleroma.social/pleroma/auto_linker.git",
  134. ref: "95e8188490e97505c56636c1379ffdf036c1fdde"},
  135. {:http_signatures,
  136. git: "https://git.pleroma.social/pleroma/http_signatures.git",
  137. ref: "293d77bb6f4a67ac8bde1428735c3b42f22cbb30"},
  138. {:telemetry, "~> 0.3"},
  139. {:poolboy, "~> 1.5"},
  140. {:prometheus_ex, "~> 3.0"},
  141. {:prometheus_plugs, "~> 1.1"},
  142. {:prometheus_phoenix, "~> 1.3"},
  143. {:prometheus_ecto, "~> 1.4"},
  144. {:recon, github: "ferd/recon", tag: "2.4.0"},
  145. {:quack, "~> 0.1.1"},
  146. {:joken, "~> 2.0"},
  147. {:benchee, "~> 1.0"},
  148. {:esshd, "~> 0.1.0", runtime: Application.get_env(:esshd, :enabled, false)},
  149. {:ex_rated, "~> 1.3"},
  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. {:mox, "~> 0.5", only: :test}
  158. ] ++ oauth_deps()
  159. end
  160. # Aliases are shortcuts or tasks specific to the current project.
  161. # For example, to create, migrate and run the seeds file at once:
  162. #
  163. # $ mix ecto.setup
  164. #
  165. # See the documentation for `Mix` for more info on aliases.
  166. defp aliases do
  167. [
  168. "ecto.migrate": ["pleroma.ecto.migrate"],
  169. "ecto.rollback": ["pleroma.ecto.rollback"],
  170. "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
  171. "ecto.reset": ["ecto.drop", "ecto.setup"],
  172. test: ["ecto.create --quiet", "ecto.migrate", "test"],
  173. docs: ["pleroma.docs", "docs"]
  174. ]
  175. end
  176. # Builds a version string made of:
  177. # * the application version
  178. # * a pre-release if ahead of the tag: the describe string (-count-commithash)
  179. # * branch name
  180. # * build metadata:
  181. # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
  182. # * the mix environment if different than prod
  183. defp version(version) do
  184. identifier_filter = ~r/[^0-9a-z\-]+/i
  185. # Pre-release version, denoted from patch version with a hyphen
  186. {git_tag, git_pre_release} =
  187. with {tag, 0} <-
  188. System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true),
  189. tag = String.trim(tag),
  190. {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
  191. describe = String.trim(describe),
  192. ahead <- String.replace(describe, tag, ""),
  193. ahead <- String.trim_leading(ahead, "-") do
  194. {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
  195. else
  196. _ ->
  197. {commit_hash, 0} = System.cmd("git", ["rev-parse", "--short", "HEAD"])
  198. {nil, "0-g" <> String.trim(commit_hash)}
  199. end
  200. if git_tag && version != git_tag do
  201. Mix.shell().error(
  202. "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
  203. )
  204. end
  205. # Branch name as pre-release version component, denoted with a dot
  206. branch_name =
  207. with {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
  208. branch_name <- String.trim(branch_name),
  209. branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
  210. true <-
  211. !Enum.any?(["master", "HEAD", "release/", "stable"], fn name ->
  212. String.starts_with?(name, branch_name)
  213. end) do
  214. branch_name =
  215. branch_name
  216. |> String.trim()
  217. |> String.replace(identifier_filter, "-")
  218. branch_name
  219. end
  220. build_name =
  221. cond do
  222. name = Application.get_env(:pleroma, :build_name) -> name
  223. name = System.get_env("PLEROMA_BUILD_NAME") -> name
  224. true -> nil
  225. end
  226. env_name = if Mix.env() != :prod, do: to_string(Mix.env())
  227. env_override = System.get_env("PLEROMA_BUILD_ENV")
  228. env_name =
  229. case env_override do
  230. nil -> env_name
  231. env_override when env_override in ["", "prod"] -> nil
  232. env_override -> env_override
  233. end
  234. # Pre-release version, denoted by appending a hyphen
  235. # and a series of dot separated identifiers
  236. pre_release =
  237. [git_pre_release, branch_name]
  238. |> Enum.filter(fn string -> string && string != "" end)
  239. |> Enum.join(".")
  240. |> (fn
  241. "" -> nil
  242. string -> "-" <> String.replace(string, identifier_filter, "-")
  243. end).()
  244. # Build metadata, denoted with a plus sign
  245. build_metadata =
  246. [build_name, env_name]
  247. |> Enum.filter(fn string -> string && string != "" end)
  248. |> Enum.join(".")
  249. |> (fn
  250. "" -> nil
  251. string -> "+" <> String.replace(string, identifier_filter, "-")
  252. end).()
  253. [version, pre_release, build_metadata]
  254. |> Enum.filter(fn string -> string && string != "" end)
  255. |> Enum.join()
  256. end
  257. end