mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 16:38:24 +02:00
Summary: Ref T10405. If `gd` is not installed, a number of unit tests currently fail because they generate synthetic users and try to composite profile pictures for them. Instead, just fall back to a static default if `gd` is not available. Test Plan: Faked this pathway, created a new user, saw a default profile picture. Reviewers: amckinley, lpriestley, avivey Reviewed By: avivey Maniphest Tasks: T10405 Differential Revision: https://secure.phabricator.com/D18812
453 lines
9.6 KiB
PHP
453 lines
9.6 KiB
PHP
<?php
|
|
|
|
final class PhabricatorFilesComposeAvatarBuiltinFile
|
|
extends PhabricatorFilesBuiltinFile {
|
|
|
|
private $icon;
|
|
private $color;
|
|
private $border;
|
|
|
|
const VERSION = 'v1';
|
|
|
|
public function setIcon($icon) {
|
|
$this->icon = $icon;
|
|
return $this;
|
|
}
|
|
|
|
public function getIcon() {
|
|
return $this->icon;
|
|
}
|
|
|
|
public function setColor($color) {
|
|
$this->color = $color;
|
|
return $this;
|
|
}
|
|
|
|
public function getColor() {
|
|
return $this->color;
|
|
}
|
|
|
|
public function setBorder($border) {
|
|
$this->border = $border;
|
|
return $this;
|
|
}
|
|
|
|
public function getBorder() {
|
|
return $this->border;
|
|
}
|
|
|
|
public function getBuiltinFileKey() {
|
|
$icon = $this->getIcon();
|
|
$color = $this->getColor();
|
|
$border = implode(',', $this->getBorder());
|
|
$desc = "compose(icon={$icon}, color={$color}, border={$border}";
|
|
$hash = PhabricatorHash::digestToLength($desc, 40);
|
|
return "builtin:{$hash}";
|
|
}
|
|
|
|
public function getBuiltinDisplayName() {
|
|
$icon = $this->getIcon();
|
|
$color = $this->getColor();
|
|
$border = implode(',', $this->getBorder());
|
|
return "{$icon}-{$color}-{$border}.png";
|
|
}
|
|
|
|
public function loadBuiltinFileData() {
|
|
return $this->composeImage(
|
|
$this->getColor(), $this->getIcon(), $this->getBorder());
|
|
}
|
|
|
|
private function composeImage($color, $image, $border) {
|
|
// If we don't have the GD extension installed, just return a static
|
|
// default profile image rather than trying to compose a dynamic one.
|
|
if (!function_exists('imagecreatefromstring')) {
|
|
$root = dirname(phutil_get_library_root('phabricator'));
|
|
$default_path = $root.'/resources/builtin/profile.png';
|
|
return Filesystem::readFile($default_path);
|
|
}
|
|
|
|
$color_const = hexdec(trim($color, '#'));
|
|
$true_border = self::rgba2gd($border);
|
|
$image_map = self::getImageMap();
|
|
$data = Filesystem::readFile($image_map[$image]);
|
|
|
|
$img = imagecreatefromstring($data);
|
|
|
|
// 4 pixel border at 50x50, 32 pixel border at 400x400
|
|
$canvas = imagecreatetruecolor(400, 400);
|
|
|
|
$image_fill = imagefill($canvas, 0, 0, $color_const);
|
|
if (!$image_fill) {
|
|
throw new Exception(
|
|
pht('Failed to save builtin avatar image data (imagefill).'));
|
|
}
|
|
|
|
$border_thickness = imagesetthickness($canvas, 64);
|
|
if (!$border_thickness) {
|
|
throw new Exception(
|
|
pht('Failed to save builtin avatar image data (imagesetthickness).'));
|
|
}
|
|
|
|
$image_rectangle = imagerectangle($canvas, 0, 0, 400, 400, $true_border);
|
|
if (!$image_rectangle) {
|
|
throw new Exception(
|
|
pht('Failed to save builtin avatar image data (imagerectangle).'));
|
|
}
|
|
|
|
$image_copy = imagecopy($canvas, $img, 0, 0, 0, 0, 400, 400);
|
|
if (!$image_copy) {
|
|
throw new Exception(
|
|
pht('Failed to save builtin avatar image data (imagecopy).'));
|
|
}
|
|
|
|
return PhabricatorImageTransformer::saveImageDataInAnyFormat(
|
|
$canvas,
|
|
'image/png');
|
|
}
|
|
|
|
private static function rgba2gd($rgba) {
|
|
$r = $rgba[0];
|
|
$g = $rgba[1];
|
|
$b = $rgba[2];
|
|
$a = $rgba[3];
|
|
$a = (1 - $a) * 255;
|
|
return ($a << 24) | ($r << 16) | ($g << 8) | $b;
|
|
}
|
|
|
|
public static function getImageMap() {
|
|
$root = dirname(phutil_get_library_root('phabricator'));
|
|
$root = $root.'/resources/builtin/alphanumeric/';
|
|
|
|
$map = array();
|
|
$list = id(new FileFinder($root))
|
|
->withType('f')
|
|
->withFollowSymlinks(true)
|
|
->find();
|
|
|
|
foreach ($list as $file) {
|
|
$map['alphanumeric/'.$file] = $root.$file;
|
|
}
|
|
|
|
return $map;
|
|
}
|
|
|
|
public function getUniqueProfileImage($username) {
|
|
$pack_map = $this->getImagePackMap();
|
|
$image_map = $this->getImageMap();
|
|
$color_map = $this->getColorMap();
|
|
$border_map = $this->getBorderMap();
|
|
$file = phutil_utf8_strtoupper(substr($username, 0, 1));
|
|
|
|
$pack_count = count($pack_map);
|
|
$color_count = count($color_map);
|
|
$border_count = count($border_map);
|
|
|
|
$pack_seed = $username.'_pack';
|
|
$color_seed = $username.'_color';
|
|
$border_seed = $username.'_border';
|
|
|
|
$pack_key =
|
|
PhabricatorHash::digestToRange($pack_seed, 0, $pack_count - 1);
|
|
$color_key =
|
|
PhabricatorHash::digestToRange($color_seed, 0, $color_count - 1);
|
|
$border_key =
|
|
PhabricatorHash::digestToRange($border_seed, 0, $border_count - 1);
|
|
|
|
$pack = $pack_map[$pack_key];
|
|
$icon = 'alphanumeric/'.$pack.'/'.$file.'.png';
|
|
$color = $color_map[$color_key];
|
|
$border = $border_map[$border_key];
|
|
|
|
if (!isset($image_map[$icon])) {
|
|
$icon = 'alphanumeric/'.$pack.'/_default.png';
|
|
}
|
|
|
|
return array('color' => $color, 'icon' => $icon, 'border' => $border);
|
|
}
|
|
|
|
public function getUserProfileImageFile($username) {
|
|
$unique = $this->getUniqueProfileImage($username);
|
|
|
|
$composer = id(new self())
|
|
->setIcon($unique['icon'])
|
|
->setColor($unique['color'])
|
|
->setBorder($unique['border']);
|
|
|
|
$data = $composer->loadBuiltinFileData();
|
|
|
|
$unguarded = AphrontWriteGuard::beginScopedUnguardedWrites();
|
|
$file = PhabricatorFile::newFromFileData(
|
|
$data,
|
|
array(
|
|
'name' => $composer->getBuiltinDisplayName(),
|
|
'profile' => true,
|
|
'canCDN' => true,
|
|
));
|
|
unset($unguarded);
|
|
|
|
return $file;
|
|
}
|
|
|
|
public static function getImagePackMap() {
|
|
$root = dirname(phutil_get_library_root('phabricator'));
|
|
$root = $root.'/resources/builtin/alphanumeric/';
|
|
|
|
$map = id(new FileFinder($root))
|
|
->withType('d')
|
|
->withFollowSymlinks(false)
|
|
->find();
|
|
|
|
return array_values($map);
|
|
}
|
|
|
|
public static function getBorderMap() {
|
|
|
|
$map = array(
|
|
array(0, 0, 0, 0),
|
|
array(0, 0, 0, 0.3),
|
|
array(255, 255, 255, 0.4),
|
|
array(255, 255, 255, 0.7),
|
|
);
|
|
|
|
return $map;
|
|
}
|
|
|
|
public static function getColorMap() {
|
|
//
|
|
// Generated Colors
|
|
// http://tools.medialab.sciences-po.fr/iwanthue/
|
|
//
|
|
$map = array(
|
|
'#335862',
|
|
'#2d5192',
|
|
'#3c5da0',
|
|
'#99cd86',
|
|
'#704889',
|
|
'#5ac59e',
|
|
'#984060',
|
|
'#33d4d1',
|
|
'#9c4050',
|
|
'#20d8fd',
|
|
'#944937',
|
|
'#4bd0e3',
|
|
'#a25542',
|
|
'#4eb4f3',
|
|
'#6da8ec',
|
|
'#545608',
|
|
'#829ce5',
|
|
'#68681d',
|
|
'#607bc2',
|
|
'#4b69ad',
|
|
'#236ead',
|
|
'#31a0de',
|
|
'#4f8ed0',
|
|
'#846f2a',
|
|
'#bdb0f0',
|
|
'#518342',
|
|
'#9166aa',
|
|
'#5e904e',
|
|
'#f79dcc',
|
|
'#158e6b',
|
|
'#e189b7',
|
|
'#3ba984',
|
|
'#a85582',
|
|
'#4cccb7',
|
|
'#863d67',
|
|
'#84c08c',
|
|
'#7f4c7f',
|
|
'#a1bb7a',
|
|
'#65558f',
|
|
'#445082',
|
|
'#c9ca8e',
|
|
'#265582',
|
|
'#f4b189',
|
|
'#265582',
|
|
'#40b8e1',
|
|
'#814a28',
|
|
'#80c8f6',
|
|
'#cf7b5d',
|
|
'#1db5c7',
|
|
'#c0606e',
|
|
'#299a89',
|
|
'#ef8ead',
|
|
'#296437',
|
|
'#d39edb',
|
|
'#507436',
|
|
'#b888c9',
|
|
'#476025',
|
|
'#9987c5',
|
|
'#7867a3',
|
|
'#769b5a',
|
|
'#c46e9d',
|
|
'#437d4e',
|
|
'#d17492',
|
|
'#115e41',
|
|
'#ec8794',
|
|
'#297153',
|
|
'#d67381',
|
|
'#57c2c3',
|
|
'#bc607f',
|
|
'#86ceac',
|
|
'#7e3e53',
|
|
'#72c8b8',
|
|
'#884349',
|
|
'#45a998',
|
|
'#faa38c',
|
|
'#265582',
|
|
'#265582',
|
|
'#e4b788',
|
|
'#265582',
|
|
'#bbbc81',
|
|
'#265582',
|
|
'#ccb781',
|
|
'#265582',
|
|
'#eb957f',
|
|
'#15729c',
|
|
'#cf996f',
|
|
'#369bc5',
|
|
'#b6685d',
|
|
'#2da0a1',
|
|
'#d38275',
|
|
'#217e70',
|
|
'#ec9da1',
|
|
'#146268',
|
|
'#e8aa95',
|
|
'#3c6796',
|
|
'#8da667',
|
|
'#935f93',
|
|
'#69a573',
|
|
'#ae78ad',
|
|
'#569160',
|
|
'#d898be',
|
|
'#8eb4e8',
|
|
'#5e622c',
|
|
'#929ad3',
|
|
'#6c8548',
|
|
'#576196',
|
|
'#aed0a0',
|
|
'#694e79',
|
|
'#9abb8d',
|
|
'#8c5175',
|
|
'#6bb391',
|
|
'#8b4a5f',
|
|
'#519878',
|
|
'#ae7196',
|
|
'#3d8465',
|
|
'#e69eb3',
|
|
'#48663d',
|
|
'#cdaede',
|
|
'#71743d',
|
|
'#63acda',
|
|
'#7b5d30',
|
|
'#66bed6',
|
|
'#3585b0',
|
|
'#5880b0',
|
|
'#739acc',
|
|
'#48a3ba',
|
|
'#9d565b',
|
|
'#7fc4ca',
|
|
'#99566b',
|
|
'#94cabf',
|
|
'#7b4b49',
|
|
'#b1c8eb',
|
|
'#4e5632',
|
|
'#ecb2c3',
|
|
'#2d6158',
|
|
'#cf8287',
|
|
'#25889f',
|
|
'#b2696d',
|
|
'#6bafb6',
|
|
'#8c5744',
|
|
'#84b9d6',
|
|
'#9db3d6',
|
|
'#777cad',
|
|
'#826693',
|
|
'#86a779',
|
|
'#9d7fad',
|
|
'#b193c2',
|
|
'#547348',
|
|
'#d5adcb',
|
|
'#3f674d',
|
|
'#c98398',
|
|
'#66865a',
|
|
'#b2add6',
|
|
'#5a623d',
|
|
'#9793bb',
|
|
'#3c5472',
|
|
'#d5c5a1',
|
|
'#5e5a7f',
|
|
'#2c647e',
|
|
'#d8b194',
|
|
'#49607f',
|
|
'#c7b794',
|
|
'#335862',
|
|
'#e3aba7',
|
|
'#335862',
|
|
'#d9b9ad',
|
|
'#335862',
|
|
'#c48975',
|
|
'#347b81',
|
|
'#ad697e',
|
|
'#799a6d',
|
|
'#916b88',
|
|
'#69536b',
|
|
'#b4c4ad',
|
|
'#845865',
|
|
'#96b89d',
|
|
'#706d92',
|
|
'#9aa27a',
|
|
'#5b7292',
|
|
'#bc967b',
|
|
'#417792',
|
|
'#ce9793',
|
|
'#335862',
|
|
'#c898a5',
|
|
'#527a5f',
|
|
'#b38ba9',
|
|
'#648d72',
|
|
'#986b78',
|
|
'#79afa4',
|
|
'#966461',
|
|
'#50959b',
|
|
'#b27d7a',
|
|
'#335862',
|
|
'#335862',
|
|
'#bcadc4',
|
|
'#706343',
|
|
'#749ebc',
|
|
'#8c6a50',
|
|
'#92b8c4',
|
|
'#758cad',
|
|
'#868e67',
|
|
'#335862',
|
|
'#335862',
|
|
'#335862',
|
|
'#ac7e8b',
|
|
'#77a185',
|
|
'#807288',
|
|
'#636f51',
|
|
'#a192a9',
|
|
'#467a70',
|
|
'#9b7d73',
|
|
'#335862',
|
|
'#335862',
|
|
'#8c9c85',
|
|
'#335862',
|
|
'#81645a',
|
|
'#5f9489',
|
|
'#335862',
|
|
'#789da8',
|
|
'#335862',
|
|
'#72826c',
|
|
'#335862',
|
|
'#5c8596',
|
|
'#335862',
|
|
'#456a74',
|
|
'#335862',
|
|
'#335862',
|
|
'#335862',
|
|
);
|
|
return $map;
|
|
}
|
|
|
|
}
|