summaryrefslogtreecommitdiffstats
path: root/lib/avatar.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-25 13:36:30 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-30 16:36:59 +0200
commit9c9dc276b7a1d2592c4fb0a887888632dc1f1e29 (patch)
treebbe3aed3e09c31c68806bdb8acffef70ba08f51c /lib/avatar.php
parenta711399e62d5a9f14d4b748efe4354ee37e61f13 (diff)
downloadnextcloud-server-9c9dc276b7a1d2592c4fb0a887888632dc1f1e29.tar.gz
nextcloud-server-9c9dc276b7a1d2592c4fb0a887888632dc1f1e29.zip
move the private namespace OC into lib/private - OCP will stay in lib/public
Conflicts: lib/private/vcategories.php
Diffstat (limited to 'lib/avatar.php')
-rw-r--r--lib/avatar.php89
1 files changed, 0 insertions, 89 deletions
diff --git a/lib/avatar.php b/lib/avatar.php
deleted file mode 100644
index f20980c364b..00000000000
--- a/lib/avatar.php
+++ /dev/null
@@ -1,89 +0,0 @@
-<?php
-/**
- * Copyright (c) 2013 Christopher Schäpers <christopher@schaepers.it>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-
-/**
- * This class gets and sets users avatars.
- */
-
-class OC_Avatar {
-
- private $view;
-
- /**
- * @brief constructor
- * @param $user string user to do avatar-management with
- */
- public function __construct ($user) {
- $this->view = new \OC\Files\View('/'.$user);
- }
-
- /**
- * @brief get the users avatar
- * @param $size integer size in px of the avatar, 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;
- }
-
- /**
- * @brief sets the users avatar
- * @param $data mixed 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 (\OC_App::isEnabled('files_encryption')) {
- $l = \OC_L10N::get('lib');
- throw new \Exception($l->t("Custom profile pictures don't work with encryption yet"));
- }
-
- $img = new OC_Image($data);
- $type = substr($img->mimeType(), -3);
- if ($type === 'peg') { $type = 'jpg'; }
- if ($type !== 'jpg' && $type !== 'png') {
- $l = \OC_L10N::get('lib');
- throw new \Exception($l->t("Unknown filetype"));
- }
-
- if (!$img->valid()) {
- $l = \OC_L10N::get('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);
- }
-
- /**
- * @brief remove the users avatar
- * @return void
- */
- public function remove () {
- $this->view->unlink('avatar.jpg');
- $this->view->unlink('avatar.png');
- }
-}