Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

275 Zeilen
9.1KB

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