Skip to content

Commit

Permalink
Merge pull request #1192 from matomo-org/develop
Browse files Browse the repository at this point in the history
Update live for upcoming 5.1.3 release
  • Loading branch information
diosmosis committed Sep 8, 2024
2 parents cf50143 + 1978404 commit ced812a
Show file tree
Hide file tree
Showing 105 changed files with 3,091 additions and 805 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@

name: Matomo for WordPress Tests

on: [push]
on:
workflow_dispatch:
push:
schedule:
- cron: "0 0 * * 0"

permissions:
actions: read
Expand Down
7 changes: 7 additions & 0 deletions .phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
<exclude name="PHPCompatibility.Lists.NewShortList.Found"/>
<exclude name="PHPCompatibility.Classes.NewAnonymousClasses.Found"/>
<exclude name="PHPCompatibility.InitialValue.NewConstantScalarExpressions.constFound"/>
<exclude name="Generic.CodeAnalysis.EmptyStatement.DetectedCatch"/>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
Expand All @@ -83,4 +84,10 @@
<rule ref="WordPress.PHP.DiscouragedPHPFunctions.system_calls_exec">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<rule ref="WordPress.PHP.DevelopmentFunctions.error_log_var_export">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<rule ref="WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
</ruleset>
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
== Changelog ===

= 5.1.3 =
* Update Matomo core to version 5.1.1 (changes: https://matomo.org/changelog/matomo-5-1-1/)
* Moderate redesign to the feedback and get started admin pages.
* Redesign of the tracker settings admin page.

= 5.1.2 =
* Incomplete bug fix: the clickjacking or replay attack fix for functionality that hides notifications for users was incomplete.
* Incomplete bug fix: the session hijacking or replay attack fix for functionality that hides notifications for users was incomplete.
* Bug fix: the wp-statistics import is broken when the newest version of wp-statistics is installed.

= 5.1.1 =
* Bug fix: in multisite installs, make sure the geoip database update only runs once for the entire WordPress instance.
* Bug fix: system report error notice should only be shown to superusers.
* Bug fix: patch Matomo core to fix an iconv() notice that can occur during geolocation.
* Allow re-running updates from a specific version in troubleshooting page to help when WordPress fails to update the plugin completely.
* Very minor security fix: functionality that hides notifications for users is no longer able to be used in clickjacking or replay attacks.
* Very minor security fix: functionality that hides notifications for users is no longer able to be used in session hijacking or replay attacks.

= 5.1.0 =
* Upgrade Matomo core to version 5.1.0 (changes: https://matomo.org/changelog/matomo-5-1-0/).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ First ensure the database you want to inspect (mariadb or mysql) is the one that
environment. Then, while the local environment is running in one shell, open another and run the command:

```bash
npm run compose -- run mariadb mariadb -h mariadb -u root -p
npm run mariadb mariadb
```

Enter `pass` for the password.
Expand Down
7 changes: 6 additions & 1 deletion app/core/UrlHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,13 @@ public static function getParseUrlReverse($parsed)
if (!is_array($parsed)) {
return false;
}
// According to RFC 1738, the chars ':', '@' and '/' need to be encoded in username or password part of an url
// We also encode '\' as a username or password containing that char, might be handled incorrectly by browsers
$escapeSpecialChars = function ($value) {
return str_replace([':', '@', '/', '\\'], [urlencode(':'), urlencode('@'), urlencode('/'), urlencode('\\')], $value);
};
$uri = !empty($parsed['scheme']) ? $parsed['scheme'] . ':' . (!strcasecmp($parsed['scheme'], 'mailto') ? '' : '//') : '';
$uri .= !empty($parsed['user']) ? $parsed['user'] . (!empty($parsed['pass']) ? ':' . $parsed['pass'] : '') . '@' : '';
$uri .= !empty($parsed['user']) ? $escapeSpecialChars($parsed['user']) . (!empty($parsed['pass']) ? ':' . $escapeSpecialChars($parsed['pass']) : '') . '@' : '';
$uri .= !empty($parsed['host']) ? $parsed['host'] : '';
$uri .= !empty($parsed['port']) ? ':' . $parsed['port'] : '';
if (!empty($parsed['path'])) {
Expand Down
2 changes: 1 addition & 1 deletion app/core/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ final class Version
* The current Matomo version.
* @var string
*/
public const VERSION = '5.1.0';
public const VERSION = '5.1.1';
public const MAJOR_VERSION = 5;
public function isStableVersion($version) : bool
{
Expand Down
6 changes: 1 addition & 5 deletions app/lang/dev.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
{
"General": {
"TranslatorName": "Matomo Development Team"
},
"Intl": {
"OriginalLanguageName": "Development",
"EnglishLanguageName": "Development"
}
}
}
6 changes: 5 additions & 1 deletion app/plugins/Login/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ protected function authenticateAndRedirect($login, $password, $urlToRedirect = f
// remove password reset entry if it exists
$this->passwordResetter->removePasswordResetInfo($login);
$parsedUrl = parse_url($urlToRedirect);
if (!empty($urlToRedirect) && false === $parsedUrl) {
if (!empty($urlToRedirect) && false === $parsedUrl || !empty($parsedUrl['scheme']) && empty($parsedUrl['host'])) {
$e = new \Piwik\Exception\Exception('The redirect URL is not valid.');
$e->setIsHtmlMessage();
throw $e;
Expand All @@ -276,6 +276,10 @@ protected function authenticateAndRedirect($login, $password, $urlToRedirect = f
$e->setIsHtmlMessage();
throw $e;
}
// We put together the url based on the parsed parameters manually to ensure it might not redirect to unexpected locations
// unescaped slashes in username or password part for example have unexpected results in browsers
// for protocol less urls starting with //, we need to prepend the double slash to have a url that passes the valid url check in redirect logic
$urlToRedirect = (strpos($urlToRedirect, '//') === 0 ? '//' : '') . UrlHelper::getParseUrlReverse($parsedUrl);
if (empty($urlToRedirect)) {
$redirect = Request::fromRequest()->getStringParameter('form_redirect', '');
$module = Request::fromQueryString(UrlHelper::getQueryFromUrl($redirect))->getStringParameter('module', '');
Expand Down
1 change: 1 addition & 0 deletions app/plugins/Marketplace/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ public function overview()
$view->isPluginUploadEnabled = CorePluginsAdmin::isPluginUploadEnabled();
$view->uploadLimit = SettingsServer::getPostMaxUploadSize();
$view->inReportingMenu = (bool) Common::getRequestVar('embed', 0, 'int');
$view->numUsers = $this->environment->getNumUsers();
return $view->render();
}
public function updateOverview() : string
Expand Down
1 change: 0 additions & 1 deletion app/plugins/Marketplace/Marketplace.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ public function getClientSideTranslationKeys(&$translationKeys)
$translationKeys[] = 'Marketplace_AutoUpdateDisabledWarning';
$translationKeys[] = 'Marketplace_ByXDevelopers';
$translationKeys[] = 'Marketplace_ClickToCompletePurchase';
$translationKeys[] = 'Marketplace_CurrentNumPiwikUsers';
$translationKeys[] = 'Marketplace_Developer';
$translationKeys[] = 'Marketplace_FeaturedPlugin';
$translationKeys[] = 'Marketplace_LastCommitTime';
Expand Down
117 changes: 117 additions & 0 deletions app/plugins/Marketplace/stylesheets/plugin-details.less
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,16 @@
max-height: calc(~"100vh - 250px");
}

&--with-free-trial {
@media (max-width: 660px) {
max-height: calc(~"90vh - 270px");
}

@media (max-width: 480px) {
max-height: calc(~"100vh - 270px");
}
}

h2, h3, h4, h5, h6 {
margin: 20px 0 10px 0;
color: #000000;
Expand Down Expand Up @@ -455,6 +465,8 @@
padding: 24px;
height: 90px;
border-top: 1px solid #aaa;
margin-top: 1px; // to prevent images overflowing the border
box-sizing: border-box;
display: flex;
justify-content: space-between;

Expand All @@ -480,10 +492,115 @@

.matomo-badge-modal {
position: initial;
width: 64px;
height: 40px;

@media (max-width: 480px) {
display: none;
}
}

&--with-free-trial {
@media (max-width: 660px) {
padding: 16px 24px;
height: 110px;
}

.cta-container-modal {
justify-content: flex-end;
}

.cta-container {
width: 100%;
margin-left: 1rem;
display: flex;
justify-content: flex-end;
box-sizing: border-box;

.free-trial {
display: flex;
}

.free-trial-lead-in {
color: #5bb75b;
font-size: 12px;
font-weight: bold;
display: inline-block;
text-align: right;
flex-grow: 1;
flex-shrink: 1;
align-content: center;
padding-right: 1rem;
}

.free-trial-dropdown {
width: 240px;
height: 36px;
vertical-align: top;
flex-shrink: 0;
}

.addToCartLink {
width: auto;
max-width: 240px;
vertical-align: top;
padding: 0 1rem;
margin-left: 1rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex-shrink: 0;
}

@media (max-width: 660px) {
margin-left: 0;
flex-direction: column; /* Stack items vertically */
justify-content: flex-start; /* Align items to the start */

.free-trial-lead-in {
width: 50%;
}

.free-trial-dropdown {
width: 50%;
}

.addToCartLink {
width: 50%;
min-width: 50%;
margin-top: 10px; /* space between rows */
margin-left: 0;
align-self: flex-end;
}
}

@media (max-width: 400px) {
.addToCartLink {
width: 100%;
min-width: 100%;
}
}
}

.matomo-badge-modal {
position: initial;

@media (max-width: 767px) {
width: 48px;
height: 32px;
}

@media (max-width: 660px) {
display: initial;
position: absolute;
bottom: 16px;
}

@media (max-width: 400px) {
display: none;
}
}

}
}
}
1 change: 1 addition & 0 deletions app/plugins/Marketplace/templates/overview.twig
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
default-sort="{{ defaultSort|json_encode }}"
plugin-sort-options="{{ pluginSortOptions|json_encode }}"
num-available-plugins-by-type="{{ numAvailablePluginsByType|json_encode }}"
num-users="{{ numUsers|json_encode }}"
></div>

<div class="footer-message center">
Expand Down
Loading

0 comments on commit ced812a

Please sign in to comment.