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.

setupchecks.js 35KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766
  1. /*
  2. * Copyright (c) 2014
  3. *
  4. * This file is licensed under the Affero General Public License version 3
  5. * or later.
  6. *
  7. * See the COPYING-README file.
  8. *
  9. */
  10. (function() {
  11. OC.SetupChecks = {
  12. /* Message types */
  13. MESSAGE_TYPE_INFO:0,
  14. MESSAGE_TYPE_WARNING:1,
  15. MESSAGE_TYPE_ERROR:2,
  16. /**
  17. * Check whether the WebDAV connection works.
  18. *
  19. * @return $.Deferred object resolved with an array of error messages
  20. */
  21. checkWebDAV: function() {
  22. var deferred = $.Deferred();
  23. var afterCall = function(xhr) {
  24. var messages = [];
  25. if (xhr.status !== 207 && xhr.status !== 401) {
  26. messages.push({
  27. msg: t('core', 'Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken.'),
  28. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  29. });
  30. }
  31. deferred.resolve(messages);
  32. };
  33. $.ajax({
  34. type: 'PROPFIND',
  35. url: OC.linkToRemoteBase('webdav'),
  36. data: '<?xml version="1.0"?>' +
  37. '<d:propfind xmlns:d="DAV:">' +
  38. '<d:prop><d:resourcetype/></d:prop>' +
  39. '</d:propfind>',
  40. contentType: 'application/xml; charset=utf-8',
  41. complete: afterCall,
  42. allowAuthErrors: true
  43. });
  44. return deferred.promise();
  45. },
  46. /**
  47. * Check whether the .well-known URLs works.
  48. *
  49. * @param url the URL to test
  50. * @param placeholderUrl the placeholder URL - can be found at OC.theme.docPlaceholderUrl
  51. * @param {boolean} runCheck if this is set to false the check is skipped and no error is returned
  52. * @param {int|int[]} expectedStatus the expected HTTP status to be returned by the URL, 207 by default
  53. * @return $.Deferred object resolved with an array of error messages
  54. */
  55. checkWellKnownUrl: function(verb, url, placeholderUrl, runCheck, expectedStatus, checkCustomHeader) {
  56. if (expectedStatus === undefined) {
  57. expectedStatus = [207];
  58. }
  59. if (!Array.isArray(expectedStatus)) {
  60. expectedStatus = [expectedStatus];
  61. }
  62. var deferred = $.Deferred();
  63. if(runCheck === false) {
  64. deferred.resolve([]);
  65. return deferred.promise();
  66. }
  67. var afterCall = function(xhr) {
  68. var messages = [];
  69. var customWellKnown = xhr.getResponseHeader('X-NEXTCLOUD-WELL-KNOWN')
  70. if (expectedStatus.indexOf(xhr.status) === -1 || (checkCustomHeader && !customWellKnown)) {
  71. var docUrl = placeholderUrl.replace('PLACEHOLDER', 'admin-setup-well-known-URL');
  72. messages.push({
  73. msg: t('core', 'Your web server is not properly set up to resolve "{url}". Further information can be found in the {linkstart}documentation ↗{linkend}.', { url: url })
  74. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + docUrl + '">')
  75. .replace('{linkend}', '</a>'),
  76. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  77. });
  78. }
  79. deferred.resolve(messages);
  80. };
  81. $.ajax({
  82. type: verb,
  83. url: url,
  84. complete: afterCall,
  85. allowAuthErrors: true
  86. });
  87. return deferred.promise();
  88. },
  89. /**
  90. * Check whether the .well-known URLs works.
  91. *
  92. * @param url the URL to test
  93. * @param placeholderUrl the placeholder URL - can be found at OC.theme.docPlaceholderUrl
  94. * @param {boolean} runCheck if this is set to false the check is skipped and no error is returned
  95. *
  96. * @return $.Deferred object resolved with an array of error messages
  97. */
  98. checkProviderUrl: function(url, placeholderUrl, runCheck) {
  99. var expectedStatus = [200];
  100. var deferred = $.Deferred();
  101. if(runCheck === false) {
  102. deferred.resolve([]);
  103. return deferred.promise();
  104. }
  105. var afterCall = function(xhr) {
  106. var messages = [];
  107. if (expectedStatus.indexOf(xhr.status) === -1) {
  108. var docUrl = placeholderUrl.replace('PLACEHOLDER', 'admin-nginx');
  109. messages.push({
  110. msg: t('core', 'Your web server is not properly set up to resolve "{url}". This is most likely related to a web server configuration that was not updated to deliver this folder directly. Please compare your configuration against the shipped rewrite rules in ".htaccess" for Apache or the provided one in the documentation for Nginx at it\'s {linkstart}documentation page ↗{linkend}. On Nginx those are typically the lines starting with "location ~" that need an update.', { docLink: docUrl, url: url })
  111. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + docUrl + '">')
  112. .replace('{linkend}', '</a>'),
  113. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  114. });
  115. }
  116. deferred.resolve(messages);
  117. };
  118. $.ajax({
  119. type: 'GET',
  120. url: url,
  121. complete: afterCall,
  122. allowAuthErrors: true
  123. });
  124. return deferred.promise();
  125. },
  126. /**
  127. * Check whether the WOFF2 URLs works.
  128. *
  129. * @param url the URL to test
  130. * @param placeholderUrl the placeholder URL - can be found at OC.theme.docPlaceholderUrl
  131. * @return $.Deferred object resolved with an array of error messages
  132. */
  133. checkWOFF2Loading: function(url, placeholderUrl) {
  134. var deferred = $.Deferred();
  135. var afterCall = function(xhr) {
  136. var messages = [];
  137. if (xhr.status !== 200) {
  138. var docUrl = placeholderUrl.replace('PLACEHOLDER', 'admin-nginx');
  139. messages.push({
  140. msg: t('core', 'Your web server is not properly set up to deliver .woff2 files. This is typically an issue with the Nginx configuration. For Nextcloud 15 it needs an adjustement to also deliver .woff2 files. Compare your Nginx configuration to the recommended configuration in our {linkstart}documentation ↗{linkend}.', { docLink: docUrl, url: url })
  141. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + docUrl + '">')
  142. .replace('{linkend}', '</a>'),
  143. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  144. });
  145. }
  146. deferred.resolve(messages);
  147. };
  148. $.ajax({
  149. type: 'GET',
  150. url: url,
  151. complete: afterCall,
  152. allowAuthErrors: true
  153. });
  154. return deferred.promise();
  155. },
  156. /**
  157. * Runs setup checks on the server side
  158. *
  159. * @return $.Deferred object resolved with an array of error messages
  160. */
  161. checkSetup: function() {
  162. var deferred = $.Deferred();
  163. var afterCall = function(data, statusText, xhr) {
  164. var messages = [];
  165. if (xhr.status === 200 && data) {
  166. if (!data.isGetenvServerWorking) {
  167. messages.push({
  168. msg: t('core', 'PHP does not seem to be setup properly to query system environment variables. The test with getenv("PATH") only returns an empty response.') + ' ' +
  169. t('core', 'Please check the {linkstart}installation documentation ↗{linkend} for PHP configuration notes and the PHP configuration of your server, especially when using php-fpm.')
  170. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-php-fpm') + '">')
  171. .replace('{linkend}', '</a>'),
  172. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  173. });
  174. }
  175. if (data.isReadOnlyConfig) {
  176. messages.push({
  177. msg: t('core', 'The read-only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update.'),
  178. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  179. });
  180. }
  181. if (!data.wasEmailTestSuccessful) {
  182. messages.push({
  183. msg: t('core', 'You have not set or verified your email server configuration, yet. Please head over to the {mailSettingsStart}Basic settings{mailSettingsEnd} in order to set them. Afterwards, use the "Send email" button below the form to verify your settings.',)
  184. .replace('{mailSettingsStart}', '<a href="' + OC.generateUrl('/settings/admin') + '">')
  185. .replace('{mailSettingsEnd}', '</a>'),
  186. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  187. });
  188. }
  189. if (!data.hasValidTransactionIsolationLevel) {
  190. messages.push({
  191. msg: t('core', 'Your database does not run with "READ COMMITTED" transaction isolation level. This can cause problems when multiple actions are executed in parallel.'),
  192. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  193. });
  194. }
  195. if(!data.hasFileinfoInstalled) {
  196. messages.push({
  197. msg: t('core', 'The PHP module "fileinfo" is missing. It is strongly recommended to enable this module to get the best results with MIME type detection.'),
  198. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  199. });
  200. }
  201. if(!data.hasWorkingFileLocking) {
  202. messages.push({
  203. msg: t('core', 'Transactional file locking is disabled, this might lead to issues with race conditions. Enable "filelocking.enabled" in config.php to avoid these problems. See the {linkstart}documentation ↗{linkend} for more information.')
  204. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-transactional-locking') + '">')
  205. .replace('{linkend}', '</a>'),
  206. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  207. });
  208. }
  209. if (data.suggestedOverwriteCliURL !== '') {
  210. messages.push({
  211. msg: t('core', 'Please make sure to set the "overwrite.cli.url" option in your config.php file to the URL that your users mainly use to access this Nextcloud. Suggestion: "{suggestedOverwriteCliURL}". Otherwise there might be problems with the URL generation via cron. (It is possible though that the suggested URL is not the URL that your users mainly use to access this Nextcloud. Best is to double check this in any case.)', {suggestedOverwriteCliURL: data.suggestedOverwriteCliURL}),
  212. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  213. });
  214. }
  215. if (!data.isDefaultPhoneRegionSet) {
  216. messages.push({
  217. msg: t('core', 'Your installation has no default phone region set. This is required to validate phone numbers in the profile settings without a country code. To allow numbers without a country code, please add "default_phone_region" with the respective {linkstart}ISO 3166-1 code ↗{linkend} of the region to your config file.')
  218. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements">')
  219. .replace('{linkend}', '</a>'),
  220. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  221. });
  222. }
  223. if (data.cronErrors.length > 0) {
  224. var listOfCronErrors = "";
  225. data.cronErrors.forEach(function(element){
  226. listOfCronErrors += "<li>";
  227. listOfCronErrors += element.error;
  228. listOfCronErrors += ' ';
  229. listOfCronErrors += element.hint;
  230. listOfCronErrors += "</li>";
  231. });
  232. messages.push({
  233. msg: t(
  234. 'core',
  235. 'It was not possible to execute the cron job via CLI. The following technical errors have appeared:'
  236. ) + "<ul>" + listOfCronErrors + "</ul>",
  237. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  238. })
  239. }
  240. if (data.cronInfo.diffInSeconds > 3600) {
  241. messages.push({
  242. msg: t('core', 'Last background job execution ran {relativeTime}. Something seems wrong. {linkstart}Check the background job settings ↗{linkend}.', {relativeTime: data.cronInfo.relativeTime})
  243. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.cronInfo.backgroundJobsUrl + '">')
  244. .replace('{linkend}', '</a>'),
  245. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  246. });
  247. }
  248. if (!data.isFairUseOfFreePushService) {
  249. messages.push({
  250. msg: t('core', 'This is the unsupported community build of Nextcloud. Given the size of this instance, performance, reliability and scalability cannot be guaranteed. Push notifications have been disabled to avoid overloading our free service. Learn more about the benefits of Nextcloud Enterprise at nextcloud.com/enterprise.'),
  251. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  252. });
  253. }
  254. if (data.serverHasInternetConnectionProblems) {
  255. messages.push({
  256. msg: t('core', 'This server has no working internet connection: Multiple endpoints could not be reached. This means that some of the features like mounting external storage, notifications about updates or installation of third-party apps will not work. Accessing files remotely and sending of notification emails might not work, either. Establish a connection from this server to the internet to enjoy all features.'),
  257. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  258. });
  259. }
  260. if(!data.isMemcacheConfigured) {
  261. messages.push({
  262. msg: t('core', 'No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the {linkstart}documentation ↗{linkend}.')
  263. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.memcacheDocs + '">')
  264. .replace('{linkend}', '</a>'),
  265. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  266. });
  267. }
  268. if(!data.isRandomnessSecure) {
  269. messages.push({
  270. msg: t('core', 'No suitable source for randomness found by PHP which is highly discouraged for security reasons. Further information can be found in the {linkstart}documentation ↗{linkend}.')
  271. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.securityDocs + '">')
  272. .replace('{linkend}', '</a>'),
  273. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  274. });
  275. }
  276. if(data.isUsedTlsLibOutdated) {
  277. messages.push({
  278. msg: data.isUsedTlsLibOutdated,
  279. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  280. });
  281. }
  282. if (data.phpSupported && data.phpSupported.eol) {
  283. messages.push({
  284. msg: t('core', 'You are currently running PHP {version}. Upgrade your PHP version to take advantage of {linkstart}performance and security updates provided by the PHP Group ↗{linkend} as soon as your distribution supports it.', { version: data.phpSupported.version })
  285. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="https://secure.php.net/supported-versions.php">')
  286. .replace('{linkend}', '</a>'),
  287. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  288. })
  289. }
  290. if (data.phpSupported && data.phpSupported.version.substr(0, 3) === '7.3') {
  291. messages.push({
  292. msg: t('core', 'Nextcloud 23 is the last release supporting PHP 7.3. Nextcloud 24 requires at least PHP 7.4.'),
  293. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  294. })
  295. }
  296. if(!data.forwardedForHeadersWorking) {
  297. messages.push({
  298. msg: t('core', 'The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If not, this is a security issue and can allow an attacker to spoof their IP address as visible to the Nextcloud. Further information can be found in the {linkstart}documentation ↗{linkend}.')
  299. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.reverseProxyDocs + '">')
  300. .replace('{linkend}', '</a>'),
  301. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  302. });
  303. }
  304. if(!data.isCorrectMemcachedPHPModuleInstalled) {
  305. messages.push({
  306. msg: t('core', 'Memcached is configured as distributed cache, but the wrong PHP module "memcache" is installed. \\OC\\Memcache\\Memcached only supports "memcached" and not "memcache". See the {linkstart}memcached wiki about both modules ↗{linkend}.')
  307. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="https://code.google.com/p/memcached/wiki/PHPClientComparison">')
  308. .replace('{linkend}', '</a>'),
  309. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  310. });
  311. }
  312. if(!data.hasPassedCodeIntegrityCheck) {
  313. messages.push({
  314. msg: t('core', 'Some files have not passed the integrity check. Further information on how to resolve this issue can be found in the {linkstart1}documentation ↗{linkend}. ({linkstart2}List of invalid files…{linkend} / {linkstart3}Rescan…{linkend})')
  315. .replace('{linkstart1}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.codeIntegrityCheckerDocumentation + '">')
  316. .replace('{linkstart2}', '<a href="' + OC.generateUrl('/settings/integrity/failed') + '">')
  317. .replace('{linkstart3}', '<a href="' + OC.generateUrl('/settings/integrity/rescan?requesttoken={requesttoken}', {'requesttoken': OC.requestToken}) + '">')
  318. .replace(/{linkend}/g, '</a>'),
  319. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  320. });
  321. }
  322. if(data.OpcacheSetupRecommendations.length > 0) {
  323. var listOfOPcacheRecommendations = "";
  324. data.OpcacheSetupRecommendations.forEach(function(element){
  325. listOfOPcacheRecommendations += "<li>" + element + "</li>";
  326. });
  327. messages.push({
  328. msg: t('core', 'The PHP OPcache module is not properly configured. See the {linkstart}documentation ↗{linkend} for more information.')
  329. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-php-opcache') + '">')
  330. .replace('{linkend}', '</a>') + '<ul>' + listOfOPcacheRecommendations + '</ul>',
  331. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  332. });
  333. }
  334. if(!data.isSettimelimitAvailable) {
  335. messages.push({
  336. msg: t(
  337. 'core',
  338. 'The PHP function "set_time_limit" is not available. This could result in scripts being halted mid-execution, breaking your installation. Enabling this function is strongly recommended.'),
  339. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  340. });
  341. }
  342. if (!data.hasFreeTypeSupport) {
  343. messages.push({
  344. msg: t(
  345. 'core',
  346. 'Your PHP does not have FreeType support, resulting in breakage of profile pictures and the settings interface.'
  347. ),
  348. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  349. })
  350. }
  351. if (data.missingIndexes.length > 0) {
  352. var listOfMissingIndexes = "";
  353. data.missingIndexes.forEach(function(element){
  354. listOfMissingIndexes += "<li>";
  355. listOfMissingIndexes += t('core', 'Missing index "{indexName}" in table "{tableName}".', element);
  356. listOfMissingIndexes += "</li>";
  357. });
  358. messages.push({
  359. msg: t(
  360. 'core',
  361. 'The database is missing some indexes. Due to the fact that adding indexes on big tables could take some time they were not added automatically. By running "occ db:add-missing-indices" those missing indexes could be added manually while the instance keeps running. Once the indexes are added queries to those tables are usually much faster.'
  362. ) + "<ul>" + listOfMissingIndexes + "</ul>",
  363. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  364. })
  365. }
  366. if (data.missingPrimaryKeys.length > 0) {
  367. var listOfMissingPrimaryKeys = "";
  368. data.missingPrimaryKeys.forEach(function(element){
  369. listOfMissingPrimaryKeys += "<li>";
  370. listOfMissingPrimaryKeys += t('core', 'Missing primary key on table "{tableName}".', element);
  371. listOfMissingPrimaryKeys += "</li>";
  372. });
  373. messages.push({
  374. msg: t(
  375. 'core',
  376. 'The database is missing some primary keys. Due to the fact that adding primary keys on big tables could take some time they were not added automatically. By running "occ db:add-missing-primary-keys" those missing primary keys could be added manually while the instance keeps running.'
  377. ) + "<ul>" + listOfMissingPrimaryKeys + "</ul>",
  378. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  379. })
  380. }
  381. if (data.missingColumns.length > 0) {
  382. var listOfMissingColumns = "";
  383. data.missingColumns.forEach(function(element){
  384. listOfMissingColumns += "<li>";
  385. listOfMissingColumns += t('core', 'Missing optional column "{columnName}" in table "{tableName}".', element);
  386. listOfMissingColumns += "</li>";
  387. });
  388. messages.push({
  389. msg: t(
  390. 'core',
  391. 'The database is missing some optional columns. Due to the fact that adding columns on big tables could take some time they were not added automatically when they can be optional. By running "occ db:add-missing-columns" those missing columns could be added manually while the instance keeps running. Once the columns are added some features might improve responsiveness or usability.'
  392. ) + "<ul>" + listOfMissingColumns + "</ul>",
  393. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  394. })
  395. }
  396. if (data.recommendedPHPModules.length > 0) {
  397. var listOfRecommendedPHPModules = "";
  398. data.recommendedPHPModules.forEach(function(element){
  399. listOfRecommendedPHPModules += "<li>" + element + "</li>";
  400. });
  401. messages.push({
  402. msg: t(
  403. 'core',
  404. 'This instance is missing some recommended PHP modules. For improved performance and better compatibility it is highly recommended to install them.'
  405. ) + "<ul><code>" + listOfRecommendedPHPModules + "</code></ul>",
  406. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  407. })
  408. }
  409. if (!data.isImagickEnabled) {
  410. messages.push({
  411. msg: t(
  412. 'core',
  413. 'The PHP module "imagick" is not enabled although the theming app is. For favicon generation to work correctly, you need to install and enable this module.'
  414. ),
  415. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  416. })
  417. }
  418. if (!data.areWebauthnExtensionsEnabled) {
  419. messages.push({
  420. msg: t(
  421. 'core',
  422. 'The PHP modules "gmp" and/or "bcmath" are not enabled. If you use WebAuthn passwordless authentication, these modules are required.'
  423. ),
  424. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  425. })
  426. }
  427. if (data.imageMagickLacksSVGSupport) {
  428. messages.push({
  429. msg: t(
  430. 'core',
  431. 'Module php-imagick in this instance has no SVG support. For better compatibility it is recommended to install it.'
  432. ),
  433. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  434. })
  435. }
  436. if (data.pendingBigIntConversionColumns.length > 0) {
  437. var listOfPendingBigIntConversionColumns = "";
  438. data.pendingBigIntConversionColumns.forEach(function(element){
  439. listOfPendingBigIntConversionColumns += "<li>" + element + "</li>";
  440. });
  441. messages.push({
  442. msg: t('core', 'Some columns in the database are missing a conversion to big int. Due to the fact that changing column types on big tables could take some time they were not changed automatically. By running \'occ db:convert-filecache-bigint\' those pending changes could be applied manually. This operation needs to be made while the instance is offline. For further details read {linkstart}the documentation page about this ↗{linkend}.')
  443. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-bigint-conversion') + '">')
  444. .replace('{linkend}', '</a>') + "<ul>" + listOfPendingBigIntConversionColumns + "</ul>",
  445. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  446. })
  447. }
  448. if (data.isSqliteUsed) {
  449. messages.push({
  450. msg: t(
  451. 'core',
  452. 'SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend.'
  453. ) + ' ' + t('core', 'This is particularly recommended when using the desktop client for file synchronisation.') + ' ' +
  454. t('core', 'To migrate to another database use the command line tool: \'occ db:convert-type\', or see the {linkstart}documentation ↗{linkend}.')
  455. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.databaseConversionDocumentation + '">')
  456. .replace('{linkend}', '</a>'),
  457. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  458. })
  459. }
  460. if (!data.isMemoryLimitSufficient) {
  461. messages.push({
  462. msg: t(
  463. 'core',
  464. 'The PHP memory limit is below the recommended value of 512MB.'
  465. ),
  466. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  467. })
  468. }
  469. if(data.appDirsWithDifferentOwner && data.appDirsWithDifferentOwner.length > 0) {
  470. var appDirsWithDifferentOwner = data.appDirsWithDifferentOwner.reduce(
  471. function(appDirsWithDifferentOwner, directory) {
  472. return appDirsWithDifferentOwner + '<li>' + directory + '</li>';
  473. },
  474. ''
  475. );
  476. messages.push({
  477. msg: t('core', 'Some app directories are owned by a different user than the web server one. ' +
  478. 'This may be the case if apps have been installed manually. ' +
  479. 'Check the permissions of the following app directories:')
  480. + '<ul>' + appDirsWithDifferentOwner + '</ul>',
  481. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  482. });
  483. }
  484. if (data.isMysqlUsedWithoutUTF8MB4) {
  485. messages.push({
  486. msg: t('core', 'MySQL is used as database but does not support 4-byte characters. To be able to handle 4-byte characters (like emojis) without issues in filenames or comments for example it is recommended to enable the 4-byte support in MySQL. For further details read {linkstart}the documentation page about this ↗{linkend}.')
  487. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-mysql-utf8mb4') + '">')
  488. .replace('{linkend}', '</a>'),
  489. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  490. })
  491. }
  492. if (!data.isEnoughTempSpaceAvailableIfS3PrimaryStorageIsUsed) {
  493. messages.push({
  494. msg: t(
  495. 'core',
  496. 'This instance uses an S3 based object store as primary storage. The uploaded files are stored temporarily on the server and thus it is recommended to have 50 GB of free space available in the temp directory of PHP. Check the logs for full details about the path and the available space. To improve this please change the temporary directory in the php.ini or make more space available in that path.'
  497. ),
  498. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  499. })
  500. }
  501. if (!data.temporaryDirectoryWritable) {
  502. messages.push({
  503. msg: t(
  504. 'core',
  505. 'The temporary directory of this instance points to an either non-existing or non-writable directory.'
  506. ),
  507. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  508. })
  509. }
  510. if (window.location.protocol === 'https:' && data.reverseProxyGeneratedURL.split('/')[0] !== 'https:') {
  511. messages.push({
  512. msg: t('core', 'You are accessing your instance over a secure connection, however your instance is generating insecure URLs. This most likely means that you are behind a reverse proxy and the overwrite config variables are not set correctly. Please read {linkstart}the documentation page about this ↗{linkend}.')
  513. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + data.reverseProxyDocs + '">')
  514. .replace('{linkend}', '</a>'),
  515. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  516. })
  517. }
  518. OC.SetupChecks.addGenericSetupCheck(data, 'OCA\\Settings\\SetupChecks\\PhpDefaultCharset', messages)
  519. OC.SetupChecks.addGenericSetupCheck(data, 'OCA\\Settings\\SetupChecks\\PhpOutputBuffering', messages)
  520. OC.SetupChecks.addGenericSetupCheck(data, 'OCA\\Settings\\SetupChecks\\LegacySSEKeyFormat', messages)
  521. OC.SetupChecks.addGenericSetupCheck(data, 'OCA\\Settings\\SetupChecks\\CheckUserCertificates', messages)
  522. OC.SetupChecks.addGenericSetupCheck(data, 'OCA\\Settings\\SetupChecks\\SupportedDatabase', messages)
  523. OC.SetupChecks.addGenericSetupCheck(data, 'OCA\\Settings\\SetupChecks\\LdapInvalidUuids', messages)
  524. } else {
  525. messages.push({
  526. msg: t('core', 'Error occurred while checking server setup'),
  527. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  528. });
  529. }
  530. deferred.resolve(messages);
  531. };
  532. $.ajax({
  533. type: 'GET',
  534. url: OC.generateUrl('settings/ajax/checksetup'),
  535. allowAuthErrors: true
  536. }).then(afterCall, afterCall);
  537. return deferred.promise();
  538. },
  539. addGenericSetupCheck: function(data, check, messages) {
  540. var setupCheck = data[check] || { pass: true, description: '', severity: 'info', linkToDocumentation: null}
  541. var type = OC.SetupChecks.MESSAGE_TYPE_INFO
  542. if (setupCheck.severity === 'warning') {
  543. type = OC.SetupChecks.MESSAGE_TYPE_WARNING
  544. } else if (setupCheck.severity === 'error') {
  545. type = OC.SetupChecks.MESSAGE_TYPE_ERROR
  546. }
  547. var message = setupCheck.description;
  548. if (setupCheck.linkToDocumentation) {
  549. message += ' ' + t('core', 'For more details see the {linkstart}documentation ↗{linkend}.')
  550. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + setupCheck.linkToDocumentation + '">')
  551. .replace('{linkend}', '</a>');
  552. }
  553. if (setupCheck.elements) {
  554. message += '<br><ul>'
  555. setupCheck.elements.forEach(function(element){
  556. message += '<li>';
  557. message += element
  558. message += '</li>';
  559. });
  560. message += '</ul>'
  561. }
  562. if (!setupCheck.pass) {
  563. messages.push({
  564. msg: message,
  565. type: type,
  566. })
  567. }
  568. },
  569. /**
  570. * Runs generic checks on the server side, the difference to dedicated
  571. * methods is that we use the same XHR object for all checks to save
  572. * requests.
  573. *
  574. * @return $.Deferred object resolved with an array of error messages
  575. */
  576. checkGeneric: function() {
  577. var self = this;
  578. var deferred = $.Deferred();
  579. var afterCall = function(data, statusText, xhr) {
  580. var messages = [];
  581. messages = messages.concat(self._checkSecurityHeaders(xhr));
  582. messages = messages.concat(self._checkSSL(xhr));
  583. deferred.resolve(messages);
  584. };
  585. $.ajax({
  586. type: 'GET',
  587. url: OC.generateUrl('heartbeat'),
  588. allowAuthErrors: true
  589. }).then(afterCall, afterCall);
  590. return deferred.promise();
  591. },
  592. checkDataProtected: function() {
  593. var deferred = $.Deferred();
  594. if(oc_dataURL === false){
  595. return deferred.resolve([]);
  596. }
  597. var afterCall = function(xhr) {
  598. var messages = [];
  599. // .ocdata is an empty file in the data directory - if this is readable then the data dir is not protected
  600. if (xhr.status === 200 && xhr.responseText === '') {
  601. messages.push({
  602. msg: t('core', 'Your data directory and files are probably accessible from the internet. The .htaccess file is not working. It is strongly recommended that you configure your web server so that the data directory is no longer accessible, or move the data directory outside the web server document root.'),
  603. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  604. });
  605. }
  606. deferred.resolve(messages);
  607. };
  608. $.ajax({
  609. type: 'GET',
  610. url: OC.linkTo('', oc_dataURL+'/.ocdata?t=' + (new Date()).getTime()),
  611. complete: afterCall,
  612. allowAuthErrors: true
  613. });
  614. return deferred.promise();
  615. },
  616. /**
  617. * Runs check for some generic security headers on the server side
  618. *
  619. * @param {Object} xhr
  620. * @return {Array} Array with error messages
  621. */
  622. _checkSecurityHeaders: function(xhr) {
  623. var messages = [];
  624. if (xhr.status === 200) {
  625. var securityHeaders = {
  626. 'X-Content-Type-Options': ['nosniff'],
  627. 'X-Robots-Tag': ['none'],
  628. 'X-Frame-Options': ['SAMEORIGIN', 'DENY'],
  629. 'X-Permitted-Cross-Domain-Policies': ['none'],
  630. };
  631. for (var header in securityHeaders) {
  632. var option = securityHeaders[header][0];
  633. if(!xhr.getResponseHeader(header) || xhr.getResponseHeader(header).toLowerCase() !== option.toLowerCase()) {
  634. var msg = t('core', 'The "{header}" HTTP header is not set to "{expected}". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly.', {header: header, expected: option});
  635. if(xhr.getResponseHeader(header) && securityHeaders[header].length > 1 && xhr.getResponseHeader(header).toLowerCase() === securityHeaders[header][1].toLowerCase()) {
  636. msg = t('core', 'The "{header}" HTTP header is not set to "{expected}". Some features might not work correctly, as it is recommended to adjust this setting accordingly.', {header: header, expected: option});
  637. }
  638. messages.push({
  639. msg: msg,
  640. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  641. });
  642. }
  643. }
  644. var xssfields = xhr.getResponseHeader('X-XSS-Protection') ? xhr.getResponseHeader('X-XSS-Protection').split(';').map(function(item) { return item.trim(); }) : [];
  645. if (xssfields.length === 0 || xssfields.indexOf('1') === -1 || xssfields.indexOf('mode=block') === -1) {
  646. messages.push({
  647. msg: t('core', 'The "{header}" HTTP header doesn\'t contain "{expected}". This is a potential security or privacy risk, as it is recommended to adjust this setting accordingly.',
  648. {
  649. header: 'X-XSS-Protection',
  650. expected: '1; mode=block'
  651. }),
  652. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  653. });
  654. }
  655. const referrerPolicy = xhr.getResponseHeader('Referrer-Policy')
  656. if (referrerPolicy === null || !/(no-referrer(-when-downgrade)?|strict-origin(-when-cross-origin)?|same-origin)(,|$)/.test(referrerPolicy)) {
  657. messages.push({
  658. msg: t('core', 'The "{header}" HTTP header is not set to "{val1}", "{val2}", "{val3}", "{val4}" or "{val5}". This can leak referer information. See the {linkstart}W3C Recommendation ↗{linkend}.',
  659. {
  660. header: 'Referrer-Policy',
  661. val1: 'no-referrer',
  662. val2: 'no-referrer-when-downgrade',
  663. val3: 'strict-origin',
  664. val4: 'strict-origin-when-cross-origin',
  665. val5: 'same-origin'
  666. })
  667. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="https://www.w3.org/TR/referrer-policy/">')
  668. .replace('{linkend}', '</a>'),
  669. type: OC.SetupChecks.MESSAGE_TYPE_INFO
  670. })
  671. }
  672. } else {
  673. messages.push({
  674. msg: t('core', 'Error occurred while checking server setup'),
  675. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  676. });
  677. }
  678. return messages;
  679. },
  680. /**
  681. * Runs check for some SSL configuration issues on the server side
  682. *
  683. * @param {Object} xhr
  684. * @return {Array} Array with error messages
  685. */
  686. _checkSSL: function(xhr) {
  687. var messages = [];
  688. if (xhr.status === 200) {
  689. var tipsUrl = OC.theme.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-security');
  690. if(OC.getProtocol() === 'https') {
  691. // Extract the value of 'Strict-Transport-Security'
  692. var transportSecurityValidity = xhr.getResponseHeader('Strict-Transport-Security');
  693. if(transportSecurityValidity !== null && transportSecurityValidity.length > 8) {
  694. var firstComma = transportSecurityValidity.indexOf(";");
  695. if(firstComma !== -1) {
  696. transportSecurityValidity = transportSecurityValidity.substring(8, firstComma);
  697. } else {
  698. transportSecurityValidity = transportSecurityValidity.substring(8);
  699. }
  700. }
  701. var minimumSeconds = 15552000;
  702. if(isNaN(transportSecurityValidity) || transportSecurityValidity <= (minimumSeconds - 1)) {
  703. messages.push({
  704. msg: t('core', 'The "Strict-Transport-Security" HTTP header is not set to at least "{seconds}" seconds. For enhanced security, it is recommended to enable HSTS as described in the {linkstart}security tips ↗{linkend}.', {'seconds': minimumSeconds})
  705. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + tipsUrl + '">')
  706. .replace('{linkend}', '</a>'),
  707. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  708. });
  709. }
  710. } else {
  711. messages.push({
  712. msg: t('core', 'Accessing site insecurely via HTTP. You are strongly advised to set up your server to require HTTPS instead, as described in the {linkstart}security tips ↗{linkend}.')
  713. .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="' + tipsUrl + '">')
  714. .replace('{linkend}', '</a>'),
  715. type: OC.SetupChecks.MESSAGE_TYPE_WARNING
  716. });
  717. }
  718. } else {
  719. messages.push({
  720. msg: t('core', 'Error occurred while checking server setup'),
  721. type: OC.SetupChecks.MESSAGE_TYPE_ERROR
  722. });
  723. }
  724. return messages;
  725. }
  726. };
  727. })();