-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(mail): Fix big logos in mail templates for Outlook
Signed-off-by: Joas Schilling <coding@schilljs.com>
- Loading branch information
1 parent
2f9fcc2
commit 37154e2
Showing
12 changed files
with
149 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
namespace OC\Repair; | ||
|
||
use OCA\Theming\ImageManager; | ||
use OCP\IConfig; | ||
use OCP\Migration\IOutput; | ||
use OCP\Migration\IRepairStep; | ||
use OCP\Server; | ||
|
||
class RepairLogoDimension implements IRepairStep { | ||
public function __construct( | ||
protected IConfig $config, | ||
) { | ||
} | ||
|
||
public function getName(): string { | ||
return 'Cache logo dimension to fix size in emails on Outlook'; | ||
} | ||
|
||
public function run(IOutput $output): void { | ||
$logoDimensions = $this->config->getAppValue('theming', 'logoDimensions'); | ||
if (preg_match('/^\d+x\d+$/', $logoDimensions)) { | ||
$output->info('Logo dimensions are already known'); | ||
return; | ||
} | ||
|
||
try { | ||
/** @var ImageManager $imageManager */ | ||
$imageManager = Server::get(ImageManager::class); | ||
} catch (\Throwable) { | ||
$output->info('Theming is disabled'); | ||
return; | ||
} | ||
|
||
if (!$imageManager->hasImage('logo')) { | ||
$output->info('Theming is not used to provide a logo'); | ||
return; | ||
} | ||
|
||
$simpleFile = $imageManager->getImage('logo', false); | ||
|
||
$image = @imagecreatefromstring($simpleFile->getContent()); | ||
|
||
$dimensions = ''; | ||
if ($image !== false) { | ||
$dimensions = imagesx($image) . 'x' . imagesy($image); | ||
} elseif (str_starts_with($simpleFile->getMimeType(), 'image/svg')) { | ||
$matched = preg_match('/viewbox=["\']\d* \d* (\d*\.?\d*) (\d*\.?\d*)["\']/i', $simpleFile->getContent(), $matches); | ||
if ($matched) { | ||
$dimensions = $matches[1] . 'x' . $matches[2]; | ||
} | ||
} | ||
|
||
if (!$dimensions) { | ||
$output->warning('Failed to read dimensions from logo'); | ||
$this->config->deleteAppValue('theming', 'logoDimensions'); | ||
return; | ||
} | ||
|
||
$dimensions = imagesx($image) . 'x' . imagesy($image); | ||
$this->config->setAppValue('theming', 'logoDimensions', $dimensions); | ||
$output->info('Updated logo dimensions: ' . $dimensions); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters