mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Using separate avatars for different peertube account types
This commit is contained in:
parent
a47f1efec3
commit
d9fb081db9
3 changed files with 12 additions and 4 deletions
BIN
images/default/peertube-account.png
Normal file
BIN
images/default/peertube-account.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
|
@ -1818,15 +1818,18 @@ class Contact
|
|||
|
||||
if (!DI::config()->get('system', 'remote_avatar_lookup')) {
|
||||
$platform = '';
|
||||
$type = Contact::TYPE_PERSON;
|
||||
|
||||
if (!empty($contact['id'])) {
|
||||
$account = DBA::selectFirst('account-user-view', ['platform'], ['id' => $contact['id']]);
|
||||
$account = DBA::selectFirst('account-user-view', ['platform', 'contact-type'], ['id' => $contact['id']]);
|
||||
$platform = $account['platform'] ?? '';
|
||||
$type = $account['contact-type'] ?? Contact::TYPE_PERSON;
|
||||
}
|
||||
|
||||
if (empty($platform) && !empty($contact['uri-id'])) {
|
||||
$account = DBA::selectFirst('account-user-view', ['platform'], ['uri-id' => $contact['uri-id']]);
|
||||
$account = DBA::selectFirst('account-user-view', ['platform', 'contact-type'], ['uri-id' => $contact['uri-id']]);
|
||||
$platform = $account['platform'] ?? '';
|
||||
$type = $account['contact-type'] ?? Contact::TYPE_PERSON;
|
||||
}
|
||||
|
||||
switch ($platform) {
|
||||
|
@ -1861,9 +1864,14 @@ class Contact
|
|||
/**
|
||||
* Picture credits
|
||||
* @license GNU Affero General Public License v3.0
|
||||
* @link https://github.com/Chocobozzz/PeerTube/blob/develop/client/src/assets/images/default-avatar-video-channel.png
|
||||
*/
|
||||
$default = '/images/default/peertube.png';
|
||||
if ($type == Contact::TYPE_COMMUNITY) {
|
||||
// @link https://github.com/Chocobozzz/PeerTube/blob/develop/client/src/assets/images/default-avatar-video-channel.png
|
||||
$default = '/images/default/peertube-channel.png';
|
||||
} else {
|
||||
// @link https://github.com/Chocobozzz/PeerTube/blob/develop/client/src/assets/images/default-avatar-account.png
|
||||
$default = '/images/default/peertube-account.png';
|
||||
}
|
||||
break;
|
||||
}
|
||||
return DI::baseUrl() . $default;
|
||||
|
|
Loading…
Reference in a new issue