fc21ae06255b88677088beb4270d6871e6a5e30c
[akkoma] / lib / mix / tasks / pleroma / instance.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Mix.Tasks.Pleroma.Instance do
6 use Mix.Task
7 import Mix.Pleroma
8
9 alias Pleroma.Config
10
11 @shortdoc "Manages Pleroma instance"
12 @moduledoc File.read!("docs/administration/CLI_tasks/instance.md")
13
14 def run(["gen" | rest]) do
15 {options, [], []} =
16 OptionParser.parse(
17 rest,
18 strict: [
19 force: :boolean,
20 output: :string,
21 output_psql: :string,
22 domain: :string,
23 instance_name: :string,
24 admin_email: :string,
25 notify_email: :string,
26 dbhost: :string,
27 dbname: :string,
28 dbuser: :string,
29 dbpass: :string,
30 rum: :string,
31 indexable: :string,
32 db_configurable: :string,
33 uploads_dir: :string,
34 static_dir: :string,
35 listen_ip: :string,
36 listen_port: :string,
37 strip_uploads: :string,
38 anonymize_uploads: :string,
39 dedupe_uploads: :string
40 ],
41 aliases: [
42 o: :output,
43 f: :force
44 ]
45 )
46
47 paths =
48 [config_path, psql_path] = [
49 Keyword.get(options, :output, "config/generated_config.exs"),
50 Keyword.get(options, :output_psql, "config/setup_db.psql")
51 ]
52
53 will_overwrite = Enum.filter(paths, &File.exists?/1)
54 proceed? = Enum.empty?(will_overwrite) or Keyword.get(options, :force, false)
55
56 if proceed? do
57 [domain, port | _] =
58 String.split(
59 get_option(
60 options,
61 :domain,
62 "What domain will your instance use? (e.g pleroma.soykaf.com)"
63 ),
64 ":"
65 ) ++ [443]
66
67 name =
68 get_option(
69 options,
70 :instance_name,
71 "What is the name of your instance? (e.g. The Corndog Emporium)",
72 domain
73 )
74
75 email = get_option(options, :admin_email, "What is your admin email address?")
76
77 notify_email =
78 get_option(
79 options,
80 :notify_email,
81 "What email address do you want to use for sending email notifications?",
82 email
83 )
84
85 indexable =
86 get_option(
87 options,
88 :indexable,
89 "Do you want search engines to index your site? (y/n)",
90 "y"
91 ) === "y"
92
93 db_configurable? =
94 get_option(
95 options,
96 :db_configurable,
97 "Do you want to store the configuration in the database (allows controlling it from admin-fe)? (y/n)",
98 "n"
99 ) === "y"
100
101 dbhost = get_option(options, :dbhost, "What is the hostname of your database?", "localhost")
102
103 dbname = get_option(options, :dbname, "What is the name of your database?", "pleroma")
104
105 dbuser =
106 get_option(
107 options,
108 :dbuser,
109 "What is the user used to connect to your database?",
110 "pleroma"
111 )
112
113 dbpass =
114 get_option(
115 options,
116 :dbpass,
117 "What is the password used to connect to your database?",
118 :crypto.strong_rand_bytes(64) |> Base.encode64() |> binary_part(0, 64),
119 "autogenerated"
120 )
121
122 rum_enabled =
123 get_option(
124 options,
125 :rum,
126 "Would you like to use RUM indices?",
127 "n"
128 ) === "y"
129
130 listen_port =
131 get_option(
132 options,
133 :listen_port,
134 "What port will the app listen to (leave it if you are using the default setup with nginx)?",
135 4000
136 )
137
138 listen_ip =
139 get_option(
140 options,
141 :listen_ip,
142 "What ip will the app listen to (leave it if you are using the default setup with nginx)?",
143 "127.0.0.1"
144 )
145
146 uploads_dir =
147 get_option(
148 options,
149 :uploads_dir,
150 "What directory should media uploads go in (when using the local uploader)?",
151 Config.get([Pleroma.Uploaders.Local, :uploads])
152 )
153 |> Path.expand()
154
155 static_dir =
156 get_option(
157 options,
158 :static_dir,
159 "What directory should custom public files be read from (custom emojis, frontend bundle overrides, robots.txt, etc.)?",
160 Config.get([:instance, :static_dir])
161 )
162 |> Path.expand()
163
164 strip_uploads =
165 get_option(
166 options,
167 :strip_uploads,
168 "Do you want to strip location (GPS) data from uploaded images? (y/n)",
169 "y"
170 ) === "y"
171
172 anonymize_uploads =
173 get_option(
174 options,
175 :anonymize_uploads,
176 "Do you want to anonymize the filenames of uploads? (y/n)",
177 "n"
178 ) === "y"
179
180 dedupe_uploads =
181 get_option(
182 options,
183 :dedupe_uploads,
184 "Do you want to deduplicate uploaded files? (y/n)",
185 "n"
186 ) === "y"
187
188 Config.put([:instance, :static_dir], static_dir)
189
190 secret = :crypto.strong_rand_bytes(64) |> Base.encode64() |> binary_part(0, 64)
191 jwt_secret = :crypto.strong_rand_bytes(64) |> Base.encode64() |> binary_part(0, 64)
192 signing_salt = :crypto.strong_rand_bytes(8) |> Base.encode64() |> binary_part(0, 8)
193 {web_push_public_key, web_push_private_key} = :crypto.generate_key(:ecdh, :prime256v1)
194 template_dir = Application.app_dir(:pleroma, "priv") <> "/templates"
195
196 result_config =
197 EEx.eval_file(
198 template_dir <> "/sample_config.eex",
199 domain: domain,
200 port: port,
201 email: email,
202 notify_email: notify_email,
203 name: name,
204 dbhost: dbhost,
205 dbname: dbname,
206 dbuser: dbuser,
207 dbpass: dbpass,
208 secret: secret,
209 jwt_secret: jwt_secret,
210 signing_salt: signing_salt,
211 web_push_public_key: Base.url_encode64(web_push_public_key, padding: false),
212 web_push_private_key: Base.url_encode64(web_push_private_key, padding: false),
213 db_configurable?: db_configurable?,
214 static_dir: static_dir,
215 uploads_dir: uploads_dir,
216 rum_enabled: rum_enabled,
217 listen_ip: listen_ip,
218 listen_port: listen_port,
219 upload_filters:
220 upload_filters(%{
221 strip: strip_uploads,
222 anonymize: anonymize_uploads,
223 dedupe: dedupe_uploads
224 })
225 )
226
227 result_psql =
228 EEx.eval_file(
229 template_dir <> "/sample_psql.eex",
230 dbname: dbname,
231 dbuser: dbuser,
232 dbpass: dbpass,
233 rum_enabled: rum_enabled
234 )
235
236 shell_info("Writing config to #{config_path}.")
237
238 File.write(config_path, result_config)
239 shell_info("Writing the postgres script to #{psql_path}.")
240 File.write(psql_path, result_psql)
241
242 write_robots_txt(static_dir, indexable, template_dir)
243
244 shell_info(
245 "\n All files successfully written! Refer to the installation instructions for your platform for next steps."
246 )
247
248 if db_configurable? do
249 shell_info(
250 " Please transfer your config to the database after running database migrations. Refer to \"Transfering the config to/from the database\" section of the docs for more information."
251 )
252 end
253 else
254 shell_error(
255 "The task would have overwritten the following files:\n" <>
256 (Enum.map(paths, &"- #{&1}\n") |> Enum.join("")) <>
257 "Rerun with `--force` to overwrite them."
258 )
259 end
260 end
261
262 defp write_robots_txt(static_dir, indexable, template_dir) do
263 robots_txt =
264 EEx.eval_file(
265 template_dir <> "/robots_txt.eex",
266 indexable: indexable
267 )
268
269 unless File.exists?(static_dir) do
270 File.mkdir_p!(static_dir)
271 end
272
273 robots_txt_path = Path.join(static_dir, "robots.txt")
274
275 if File.exists?(robots_txt_path) do
276 File.cp!(robots_txt_path, "#{robots_txt_path}.bak")
277 shell_info("Backing up existing robots.txt to #{robots_txt_path}.bak")
278 end
279
280 File.write(robots_txt_path, robots_txt)
281 shell_info("Writing #{robots_txt_path}.")
282 end
283
284 defp upload_filters(filters) when is_map(filters) do
285 enabled_filters =
286 if filters.strip do
287 [Pleroma.Upload.Filter.ExifTool]
288 else
289 []
290 end
291
292 enabled_filters =
293 if filters.anonymize do
294 enabled_filters ++ [Pleroma.Upload.Filter.AnonymizeFilename]
295 else
296 enabled_filters
297 end
298
299 enabled_filters =
300 if filters.dedupe do
301 enabled_filters ++ [Pleroma.Upload.Filter.Dedupe]
302 else
303 enabled_filters
304 end
305
306 enabled_filters
307 end
308
309 defp upload_filters(_), do: []
310 end