Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

271 rinda
9.0KB

  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. {:mox, "~> 0.5", only: :test}
  153. ] ++ oauth_deps()
  154. end
  155. # Aliases are shortcuts or tasks specific to the current project.
  156. # For example, to create, migrate and run the seeds file at once:
  157. #
  158. # $ mix ecto.setup
  159. #
  160. # See the documentation for `Mix` for more info on aliases.
  161. defp aliases do
  162. [
  163. "ecto.migrate": ["pleroma.ecto.migrate"],
  164. "ecto.rollback": ["pleroma.ecto.rollback"],
  165. "ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
  166. "ecto.reset": ["ecto.drop", "ecto.setup"],
  167. test: ["ecto.create --quiet", "ecto.migrate", "test"],
  168. docs: ["pleroma.docs", "docs"]
  169. ]
  170. end
  171. # Builds a version string made of:
  172. # * the application version
  173. # * a pre-release if ahead of the tag: the describe string (-count-commithash)
  174. # * branch name
  175. # * build metadata:
  176. # * a build name if `PLEROMA_BUILD_NAME` or `:pleroma, :build_name` is defined
  177. # * the mix environment if different than prod
  178. defp version(version) do
  179. identifier_filter = ~r/[^0-9a-z\-]+/i
  180. # Pre-release version, denoted from patch version with a hyphen
  181. {git_tag, git_pre_release} =
  182. with {tag, 0} <-
  183. System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true),
  184. tag = String.trim(tag),
  185. {describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
  186. describe = String.trim(describe),
  187. ahead <- String.replace(describe, tag, ""),
  188. ahead <- String.trim_leading(ahead, "-") do
  189. {String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
  190. else
  191. _ ->
  192. {commit_hash, 0} = System.cmd("git", ["rev-parse", "--short", "HEAD"])
  193. {nil, "0-g" <> String.trim(commit_hash)}
  194. end
  195. if git_tag && version != git_tag do
  196. Mix.shell().error(
  197. "Application version #{inspect(version)} does not match git tag #{inspect(git_tag)}"
  198. )
  199. end
  200. # Branch name as pre-release version component, denoted with a dot
  201. branch_name =
  202. with {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
  203. branch_name <- String.trim(branch_name),
  204. branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
  205. true <- branch_name not in ["master", "HEAD"] do
  206. branch_name =
  207. branch_name
  208. |> String.trim()
  209. |> String.replace(identifier_filter, "-")
  210. branch_name
  211. end
  212. build_name =
  213. cond do
  214. name = Application.get_env(:pleroma, :build_name) -> name
  215. name = System.get_env("PLEROMA_BUILD_NAME") -> name
  216. true -> nil
  217. end
  218. env_name = if Mix.env() != :prod, do: to_string(Mix.env())
  219. env_override = System.get_env("PLEROMA_BUILD_ENV")
  220. env_name =
  221. case env_override do
  222. nil -> env_name
  223. env_override when env_override in ["", "prod"] -> nil
  224. env_override -> env_override
  225. end
  226. # Pre-release version, denoted by appending a hyphen
  227. # and a series of dot separated identifiers
  228. pre_release =
  229. [git_pre_release, branch_name]
  230. |> Enum.filter(fn string -> string && string != "" end)
  231. |> Enum.join(".")
  232. |> (fn
  233. "" -> nil
  234. string -> "-" <> String.replace(string, identifier_filter, "-")
  235. end).()
  236. # Build metadata, denoted with a plus sign
  237. build_metadata =
  238. [build_name, env_name]
  239. |> Enum.filter(fn string -> string && string != "" end)
  240. |> Enum.join(".")
  241. |> (fn
  242. "" -> nil
  243. string -> "+" <> String.replace(string, identifier_filter, "-")
  244. end).()
  245. [version, pre_release, build_metadata]
  246. |> Enum.filter(fn string -> string && string != "" end)
  247. |> Enum.join()
  248. end
  249. end