install.tmpl 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. {{template "base/head" .}}
  2. <div class="install">
  3. <div class="ui middle very relaxed page grid">
  4. <div class="sixteen wide center aligned centered column">
  5. <h3 class="ui top attached header">
  6. {{.i18n.Tr "install.title"}}
  7. </h3>
  8. <div class="ui attached segment">
  9. {{template "base/alert" .}}
  10. <p>{{.i18n.Tr "install.docker_helper" "https://github.com/gogits/gogs/tree/master/docker" | Safe}}</p>
  11. <form class="ui form" action="{{AppSubURL}}/install" method="post">
  12. <!-- Dtabase Settings -->
  13. <h4 class="ui dividing header">{{.i18n.Tr "install.db_title"}}</h4>
  14. <p>{{.i18n.Tr "install.requite_db_desc"}}</p>
  15. <div class="inline required field {{if .Err_DbType}}error{{end}}">
  16. <label>{{.i18n.Tr "install.db_type"}}</label>
  17. <div class="ui selection database type dropdown">
  18. <input type="hidden" id="db_type" name="db_type" value="{{.CurDbOption}}">
  19. <div class="text">{{.CurDbOption}}</div>
  20. <i class="dropdown icon"></i>
  21. <div class="menu">
  22. {{range .DbOptions}}
  23. <div class="item" data-value="{{.}}">{{.}}</div>
  24. {{end}}
  25. </div>
  26. </div>
  27. </div>
  28. <div id="sql_settings" class="{{if or (eq .CurDbOption "SQLite3") (eq .CurDbOption "TiDB")}}hide{{end}}">
  29. <div class="inline required field {{if .Err_DbSetting}}error{{end}}">
  30. <label for="db_host">{{.i18n.Tr "install.host"}}</label>
  31. <input id="db_host" name="db_host" value="{{.db_host}}">
  32. </div>
  33. <div class="inline required field {{if .Err_DbSetting}}error{{end}}">
  34. <label for="db_user">{{.i18n.Tr "install.user"}}</label>
  35. <input id="db_user" name="db_user" value="{{.db_user}}">
  36. </div>
  37. <div class="inline required field {{if .Err_DbSetting}}error{{end}}">
  38. <label for="db_passwd">{{.i18n.Tr "install.password"}}</label>
  39. <input id="db_passwd" name="db_passwd" type="password" value="{{.db_passwd}}">
  40. </div>
  41. <div class="inline required field {{if .Err_DbSetting}}error{{end}}">
  42. <label for="db_name">{{.i18n.Tr "install.db_name"}}</label>
  43. <input id="db_name" name="db_name" value="{{.db_name}}">
  44. <span class="help">{{.i18n.Tr "install.db_helper"}}</span>
  45. </div>
  46. </div>
  47. <div id="pgsql_settings" class="{{if not (eq .CurDbOption "PostgreSQL")}}hide{{end}}">
  48. <div class="inline required field">
  49. <label>{{.i18n.Tr "install.ssl_mode"}}</label>
  50. <div class="ui selection database type dropdown">
  51. <input type="hidden" name="ssl_mode" value="{{if .ssl_mode}}{{.ssl_mode}}{{else}}disable{{end}}">
  52. <div class="default text">disable</div>
  53. <i class="dropdown icon"></i>
  54. <div class="menu">
  55. <div class="item" data-value="disable">Disable</div>
  56. <div class="item" data-value="require">Require</div>
  57. <div class="item" data-value="verify-full">Verify Full</div>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. <div id="sqlite_settings" class="{{if not (or (eq .CurDbOption "SQLite3") (eq .CurDbOption "TiDB"))}}hide{{end}}">
  63. <div class="inline required field {{if or .Err_DbPath .Err_DbSetting}}error{{end}}">
  64. <label for="db_path">{{.i18n.Tr "install.path"}}</label>
  65. <input id="db_path" name="db_path" value="{{.db_path}}">
  66. <span class="help">{{.i18n.Tr "install.sqlite_helper" | Safe}}</span>
  67. </div>
  68. </div>
  69. <!-- General Settings -->
  70. <h4 class="ui dividing header">{{.i18n.Tr "install.general_title"}}</h4>
  71. <div class="inline required field {{if .Err_AppName}}error{{end}}">
  72. <label for="app_name">{{.i18n.Tr "install.app_name"}}</label>
  73. <input id="app_name" name="app_name" value="{{.app_name}}" required>
  74. <span class="help">{{.i18n.Tr "install.app_name_helper"}}</span>
  75. </div>
  76. <div class="inline required field {{if .Err_RepoRootPath}}error{{end}}">
  77. <label for="repo_root_path">{{.i18n.Tr "install.repo_path"}}</label>
  78. <input id="repo_root_path" name="repo_root_path" value="{{.repo_root_path}}" required>
  79. <span class="help">{{.i18n.Tr "install.repo_path_helper"}}</span>
  80. </div>
  81. <div class="inline required field {{if .Err_RunUser}}error{{end}}">
  82. <label for="run_user">{{.i18n.Tr "install.run_user"}}</label>
  83. <input id="run_user" name="run_user" value="{{.run_user}}" required>
  84. <span class="help">{{.i18n.Tr "install.run_user_helper"}}</span>
  85. </div>
  86. <div class="inline required field">
  87. <label for="domain">{{.i18n.Tr "install.domain"}}</label>
  88. <input id="domain" name="domain" value="{{.domain}}" placeholder="e.g. try.gogs.io" required>
  89. <span class="help">{{.i18n.Tr "install.domain_helper"}}</span>
  90. </div>
  91. <div class="inline required field">
  92. <label for="ssh_port">{{.i18n.Tr "install.ssh_port"}}</label>
  93. <input id="ssh_port" name="ssh_port" value="{{.ssh_port}}">
  94. <span class="help">{{.i18n.Tr "install.ssh_port_helper"}}</span>
  95. </div>
  96. <div class="inline field checkbox">
  97. <div class="ui checkbox">
  98. <label class="poping up" data-content="{{.i18n.Tr "install.use_builtin_ssh_server_popup"}}"><strong>{{.i18n.Tr "install.use_builtin_ssh_server"}}</strong></label>
  99. <input name="use_builtin_ssh_server" type="checkbox" {{if .use_builtin_ssh_server}}checked{{end}}>
  100. </div>
  101. </div>
  102. <div class="inline required field">
  103. <label for="http_port">{{.i18n.Tr "install.http_port"}}</label>
  104. <input id="http_port" name="http_port" value="{{.http_port}}" required>
  105. <span class="help">{{.i18n.Tr "install.http_port_helper"}}</span>
  106. </div>
  107. <div class="inline required field">
  108. <label for="app_url">{{.i18n.Tr "install.app_url"}}</label>
  109. <input id="app_url" name="app_url" value="{{.app_url}}" placeholder="e.g. https://try.gogs.io" required>
  110. <span class="help">{{.i18n.Tr "install.app_url_helper"}}</span>
  111. </div>
  112. <div class="inline required field">
  113. <label for="log_root_path">{{.i18n.Tr "install.log_root_path"}}</label>
  114. <input id="log_root_path" name="log_root_path" value="{{.log_root_path}}" placeholder="log" required>
  115. <span class="help">{{.i18n.Tr "install.log_root_path_helper"}}</span>
  116. </div>
  117. <div class="inline field checkbox">
  118. <div class="ui checkbox">
  119. <label class="poping up" data-content="{{.i18n.Tr "install.enable_console_mode_popup"}}"><strong>{{.i18n.Tr "install.enable_console_mode"}}</strong></label>
  120. <input name="enable_console_mode" type="checkbox" {{if .enable_console_mode}}checked{{end}}>
  121. </div>
  122. </div>
  123. <!-- Optional Settings -->
  124. <h4 class="ui dividing header">{{.i18n.Tr "install.optional_title"}}</h4>
  125. <!-- Email -->
  126. <div class="ui accordion optional field">
  127. <div class="title {{if .Err_SMTP}}text red{{end}}">
  128. <i class="icon dropdown"></i>
  129. {{.i18n.Tr "install.email_title"}}
  130. </div>
  131. <div class="content {{if .Err_SMTP}}active{{end}}">
  132. <div class="inline field {{if .Err_SMTPHost}}error{{end}}">
  133. <label for="smtp_host">{{.i18n.Tr "install.smtp_host"}}</label>
  134. <input id="smtp_host" name="smtp_host" value="{{.smtp_host}}">
  135. </div>
  136. <div class="inline field {{if .Err_SMTPFrom}}error{{end}}">
  137. <label for="smtp_from">{{.i18n.Tr "install.smtp_from"}}</label>
  138. <input id="smtp_from" name="smtp_from" value="{{.smtp_from}}">
  139. <span class="help">{{.i18n.Tr "install.smtp_from_helper"}}</span>
  140. </div>
  141. <div class="inline field {{if .Err_SMTPUser}}error{{end}}">
  142. <label for="smtp_user">{{.i18n.Tr "install.mailer_user"}}</label>
  143. <input id="smtp_user" name="smtp_user" value="{{.smtp_user}}">
  144. </div>
  145. <div class="inline field">
  146. <label for="smtp_passwd">{{.i18n.Tr "install.mailer_password"}}</label>
  147. <input id="smtp_passwd" name="smtp_passwd" type="password" value="{{.smtp_passwd}}">
  148. </div>
  149. <div class="inline field">
  150. <div class="ui checkbox">
  151. <label><strong>{{.i18n.Tr "install.register_confirm"}}</strong></label>
  152. <input name="register_confirm" type="checkbox" {{if .register_confirm}}checked{{end}}>
  153. </div>
  154. </div>
  155. <div class="inline field">
  156. <div class="ui checkbox">
  157. <label><strong>{{.i18n.Tr "install.mail_notify"}}</strong></label>
  158. <input name="mail_notify" type="checkbox" {{if .mail_notify}}checked{{end}}>
  159. </div>
  160. </div>
  161. </div>
  162. </div>
  163. <!-- Server and other services -->
  164. <div class="ui accordion optional field">
  165. <div class="title {{if .Err_Services}}text red{{end}}">
  166. <i class="icon dropdown"></i>
  167. {{.i18n.Tr "install.server_service_title"}}
  168. </div>
  169. <div class="content {{if .Err_Services}}active{{end}}">
  170. <div class="inline field">
  171. <div class="ui checkbox" id="offline-mode">
  172. <label class="poping up" data-content="{{.i18n.Tr "install.offline_mode_popup"}}"><strong>{{.i18n.Tr "install.offline_mode"}}</strong></label>
  173. <input name="offline_mode" type="checkbox" {{if .offline_mode}}checked{{end}}>
  174. </div>
  175. </div>
  176. <div class="inline field">
  177. <div class="ui checkbox" id="disable-gravatar">
  178. <label class="poping up" data-content="{{.i18n.Tr "install.disable_gravatar_popup"}}"><strong>{{.i18n.Tr "install.disable_gravatar"}}</strong></label>
  179. <input name="disable_gravatar" type="checkbox" {{if .disable_gravatar}}checked{{end}}>
  180. </div>
  181. </div>
  182. <div class="inline field">
  183. <div class="ui checkbox" id="federated-avatar-lookup">
  184. <label class="poping up" data-content="{{.i18n.Tr "install.federated_avatar_lookup_popup"}}"><strong>{{.i18n.Tr "install.federated_avatar_lookup"}}</strong></label>
  185. <input name="enable_federated_avatar" type="checkbox" {{if .enable_federated_avatar}}checked{{end}}>
  186. </div>
  187. </div>
  188. <div class="inline field">
  189. <div class="ui checkbox" id="disable-registration">
  190. <label class="poping up" data-content="{{.i18n.Tr "install.disable_registration_popup"}}"><strong>{{.i18n.Tr "install.disable_registration"}}</strong></label>
  191. <input name="disable_registration" type="checkbox" {{if .disable_registration}}checked{{end}}>
  192. </div>
  193. </div>
  194. <div class="inline field">
  195. <div class="ui checkbox" id="enable-captcha">
  196. <label class="poping up" data-content="{{.i18n.Tr "install.enable_captcha_popup"}}"><strong>{{.i18n.Tr "install.enable_captcha"}}</strong></label>
  197. <input name="enable_captcha" type="checkbox" {{if .enable_captcha}}checked{{end}}>
  198. </div>
  199. </div>
  200. <div class="inline field">
  201. <div class="ui checkbox">
  202. <label class="poping up" data-content="{{.i18n.Tr "install.require_sign_in_view_popup"}}"><strong>{{.i18n.Tr "install.require_sign_in_view"}}</strong></label>
  203. <input name="require_sign_in_view" type="checkbox" {{if .require_sign_in_view}}checked{{end}}>
  204. </div>
  205. </div>
  206. </div>
  207. </div>
  208. <!-- Admin -->
  209. <div class="ui accordion optional field">
  210. <div class="title {{if .Err_Admin}}text red{{end}}">
  211. <i class="icon dropdown"></i>
  212. {{.i18n.Tr "install.admin_title"}}
  213. </div>
  214. <div class="content {{if .Err_Admin}}active{{end}}">
  215. <p class="center">{{.i18n.Tr "install.admin_setting_desc"}}</p>
  216. <div class="inline field {{if .Err_AdminName}}error{{end}}">
  217. <label for="admin_name">{{.i18n.Tr "install.admin_name"}}</label>
  218. <input id="admin_name" name="admin_name" value="{{.admin_name}}">
  219. </div>
  220. <div class="inline field {{if .Err_AdminPasswd}}error{{end}}">
  221. <label for="admin_passwd">{{.i18n.Tr "install.admin_password"}}</label>
  222. <input id="admin_passwd" name="admin_passwd" type="password" value="{{.admin_passwd}}">
  223. </div>
  224. <div class="inline field {{if .Err_AdminPasswd}}error{{end}}">
  225. <label for="admin_confirm_passwd">{{.i18n.Tr "install.confirm_password"}}</label>
  226. <input id="admin_confirm_passwd" name="admin_confirm_passwd" type="password" value="{{.admin_confirm_passwd}}">
  227. </div>
  228. <div class="inline field {{if .Err_AdminEmail}}error{{end}}">
  229. <label for="admin_email">{{.i18n.Tr "install.admin_email"}}</label>
  230. <input id="admin_email" name="admin_email" type="email" value="{{.admin_email}}">
  231. </div>
  232. </div>
  233. </div>
  234. <div class="ui divider"></div>
  235. <div class="inline field">
  236. <label></label>
  237. <button class="ui primary button">{{.i18n.Tr "install.install_gogs"}}</button>
  238. </div>
  239. </form>
  240. </div>
  241. </div>
  242. </div>
  243. </div>
  244. <script>
  245. // Database type change detection.
  246. $("#db_type").change(function () {
  247. var sqliteDefault = 'data/gogs.db';
  248. var dbType = $(this).val();
  249. if (dbType === "SQLite3") {
  250. $('#sql_settings').hide();
  251. $('#pgsql_settings').hide();
  252. $('#sqlite_settings').show();
  253. if (dbType === "SQLite3") {
  254. $('#db_path').val(sqliteDefault);
  255. }
  256. return;
  257. }
  258. var dbDefaults = {
  259. "MySQL": "127.0.0.1:3306",
  260. "PostgreSQL": "127.0.0.1:5432",
  261. "MSSQL": "127.0.0.1, 1433"
  262. };
  263. $('#sqlite_settings').hide();
  264. $('#sql_settings').show();
  265. $('#pgsql_settings').toggle(dbType === "PostgreSQL");
  266. $.each(dbDefaults, function(type, defaultHost) {
  267. if ($('#db_host').val() == defaultHost) {
  268. $('#db_host').val(dbDefaults[dbType]);
  269. return false;
  270. }
  271. });
  272. });
  273. // TODO: better handling of exclusive relations.
  274. $('#offline-mode input').change(function () {
  275. if ($(this).is(':checked')) {
  276. $('#disable-gravatar').checkbox('check');
  277. $('#federated-avatar-lookup').checkbox('uncheck');
  278. }
  279. });
  280. $('#disable-gravatar input').change(function () {
  281. if ($(this).is(':checked')) {
  282. $('#federated-avatar-lookup').checkbox('uncheck');
  283. } else {
  284. $('#offline-mode').checkbox('uncheck');
  285. }
  286. });
  287. $('#federated-avatar-lookup input').change(function () {
  288. if ($(this).is(':checked')) {
  289. $('#disable-gravatar').checkbox('uncheck');
  290. $('#offline-mode').checkbox('uncheck');
  291. }
  292. });
  293. $('#disable-registration input').change(function () {
  294. if ($(this).is(':checked')) {
  295. $('#enable-captcha').checkbox('uncheck');
  296. }
  297. });
  298. $('#enable-captcha input').change(function () {
  299. if ($(this).is(':checked')) {
  300. $('#disable-registration').checkbox('uncheck');
  301. }
  302. });
  303. </script>
  304. {{template "base/footer" .}}