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.

265 lines
8.8KB

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