Branch | Commit message | Author | Age |
dependabot/npm_and_yarn/stable29/moment-timezone-0.5.47 | chore(deps): bump moment-timezone from 0.5.46 to 0.5.47 | dependabot[bot] | 4 hours |
dependabot/npm_and_yarn/stable29/nextcloud/moment-1.3.2 | chore(deps): bump @nextcloud/moment from 1.3.1 to 1.3.2 | dependabot[bot] | 4 hours |
dependabot/npm_and_yarn/stable30/moment-timezone-0.5.47 | chore(deps): bump moment-timezone from 0.5.46 to 0.5.47 | dependabot[bot] | 4 hours |
dependabot/npm_and_yarn/stable30/libphonenumber-js-1.11.19 | chore(deps): bump libphonenumber-js from 1.11.18 to 1.11.19 | dependabot[bot] | 4 hours |
dependabot/npm_and_yarn/vitest-3.0.4 | chore(deps-dev): bump vitest from 2.1.8 to 3.0.4 | dependabot[bot] | 4 hours |
dependabot/npm_and_yarn/cypress-split-1.24.7 | chore(deps-dev): bump cypress-split from 1.24.0 to 1.24.7 | dependabot[bot] | 4 hours |
dependabot/npm_and_yarn/vue-loader-17.4.2 | chore(deps-dev): bump vue-loader from 15.11.1 to 17.4.2 | dependabot[bot] | 4 hours |
dependabot/npm_and_yarn/vue-cropperjs-5.0.0 | chore(deps): bump vue-cropperjs from 4.2.0 to 5.0.0 | dependabot[bot] | 4 hours |
dependabot/npm_and_yarn/testing-library/user-event-14.6.1 | chore(deps-dev): bump @testing-library/user-event from 14.5.2 to 14.6.1 | dependabot[bot] | 4 hours |
dependabot/npm_and_yarn/stable31/testing-library/cypress-10.0.3 | chore(deps-dev): bump @testing-library/cypress from 10.0.2 to 10.0.3 | dependabot[<?php
/**
* @author Arthur Schiwon <blizzz@owncloud.com>
* @author Christopher Schäpers <kondou@ts.unde.re>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
class OC_Avatar implements \OCP\IAvatar {
private $view;
/**
* constructor
* @param string $user user to do avatar-management with
*/
public function __construct ($user) {
$this->view = new \OC\Files\View('/'.$user);
}
/**
* get the users avatar
* @param int $size size in px of the avatar, avatars are square, defaults to 64
* @return boolean|\OC_Image containing the avatar or false if there's no image
*/
public function get ($size = 64) {
if ($this->view->file_exists('avatar.jpg')) {
$ext = 'jpg';
} elseif ($this->view->file_exists('avatar.png')) {
$ext = 'png';
} else {
return false;
}
$avatar = new OC_Image();
$avatar->loadFromData($this->view->file_get_contents('avatar.'.$ext));
$avatar->resize($size);
return $avatar;
}
/**
* Check if an avatar exists for the user
*
* @return bool
*/
public function exists() {
return $this->view->file_exists('avatar.jpg') || $this->view->file_exists('avatar.png');
}
/**
* sets the users avatar
* @param \OC_Image|resource|string $data OC_Image, imagedata or path to set a new avatar
* @throws Exception if the provided file is not a jpg or png image
* @throws Exception if the provided image is not valid
* @throws \OC\NotSquareException if the image is not square
* @return void
*/
public function set ($data) {
if($data instanceOf OC_Image) {
$img = $data;
$data = $img->data();
} else {
$img = new OC_Image($data);
}
$type = substr($img->mimeType(), -3);
if ($type === 'peg') {
$type = 'jpg';
}
if ($type !== 'jpg' && $type !== 'png') {
$l = \OC::$server->getL10N('lib');
throw new \Exception($l->t("Unknown filetype"));
}
if (!$img->valid()) {
$l = \OC::$server->getL10N('lib');
throw new \Exception($l->t("Invalid image"));
}
if (!($img->height() === $img->width())) {
throw new \OC\NotSquareException();
}
$this->view->unlink('avatar.jpg');
$this->view->unlink('avatar.png');
$this->view->file_put_contents('avatar.'.$type, $data);
}
/**
* remove the users avatar
* @return void
*/
public function remove () {
$this->view->unlink('avatar.jpg');
$this->view->unlink('avatar.png');
}
}
|