123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <?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.
- */
- namespace OC\Core\Avatar;
- class Controller {
- public static function getAvatar($args) {
- \OC_JSON::checkLoggedIn();
- \OC_JSON::callCheck();
- $user = stripslashes($args['user']);
- $size = (int)$args['size'];
- if ($size > 2048) {
- $size = 2048;
- }
- // Undefined size
- elseif ($size === 0) {
- $size = 64;
- }
- $avatar = new \OC_Avatar($user);
- $image = $avatar->get($size);
- \OC_Response::disableCaching();
- \OC_Response::setLastModifiedHeader(time());
- if ($image instanceof \OC_Image) {
- \OC_Response::setETagHeader(crc32($image->data()));
- $image->show();
- } else {
- // Signalizes $.avatar() to display a defaultavatar
- \OC_JSON::success();
- }
- }
- public static function postAvatar($args) {
- \OC_JSON::checkLoggedIn();
- \OC_JSON::callCheck();
- $user = \OC_User::getUser();
- if (isset($_POST['path'])) {
- $path = stripslashes($_POST['path']);
- $view = new \OC\Files\View('/'.$user.'/files');
- $newAvatar = $view->file_get_contents($path);
- } elseif (!empty($_FILES)) {
- $files = $_FILES['files'];
- if (
- $files['error'][0] === 0 &&
- is_uploaded_file($files['tmp_name'][0]) &&
- !\OC\Files\Filesystem::isFileBlacklisted($files['tmp_name'][0])
- ) {
- $newAvatar = file_get_contents($files['tmp_name'][0]);
- unlink($files['tmp_name'][0]);
- }
- } else {
- $l = new \OC_L10n('core');
- \OC_JSON::error(array("data" => array("message" => $l->t("No image or file provided")) ));
- return;
- }
- try {
- $avatar = new \OC_Avatar($user);
- $avatar->set($newAvatar);
- \OC_JSON::success();
- } catch (\OC\NotSquareException $e) {
- $image = new \OC_Image($newAvatar);
- if ($image->valid()) {
- \OC_Cache::set('tmpavatar', $image->data(), 7200);
- \OC_JSON::error(array("data" => "notsquare"));
- } else {
- $l = new \OC_L10n('core');
- $mimeType = $image->mimeType();
- if ($mimeType !== 'image/jpeg' && $mimeType !== 'image/png') {
- \OC_JSON::error(array("data" => array("message" => $l->t("Unknown filetype")) ));
- }
- if (!$image->valid()) {
- \OC_JSON::error(array("data" => array("message" => $l->t("Invalid image")) ));
- }
- }
- } catch (\Exception $e) {
- \OC_JSON::error(array("data" => array("message" => $e->getMessage()) ));
- }
- }
- public static function deleteAvatar($args) {
- \OC_JSON::checkLoggedIn();
- \OC_JSON::callCheck();
- $user = \OC_User::getUser();
- try {
- $avatar = new \OC_Avatar($user);
- $avatar->remove();
- \OC_JSON::success();
- } catch (\Exception $e) {
- \OC_JSON::error(array("data" => array("message" => $e->getMessage()) ));
- }
- }
- public static function getTmpAvatar($args) {
- \OC_JSON::checkLoggedIn();
- \OC_JSON::callCheck();
- $tmpavatar = \OC_Cache::get('tmpavatar');
- if (is_null($tmpavatar)) {
- $l = new \OC_L10n('core');
- \OC_JSON::error(array("data" => array("message" => $l->t("No temporary profile picture available, try again")) ));
- return;
- }
- $image = new \OC_Image($tmpavatar);
- \OC_Response::disableCaching();
- \OC_Response::setLastModifiedHeader(time());
- \OC_Response::setETagHeader(crc32($image->data()));
- $image->show();
- }
- public static function postCroppedAvatar($args) {
- \OC_JSON::checkLoggedIn();
- \OC_JSON::callCheck();
- $user = \OC_User::getUser();
- if (isset($_POST['crop'])) {
- $crop = $_POST['crop'];
- } else {
- $l = new \OC_L10n('core');
- \OC_JSON::error(array("data" => array("message" => $l->t("No crop data provided")) ));
- return;
- }
- $tmpavatar = \OC_Cache::get('tmpavatar');
- if (is_null($tmpavatar)) {
- $l = new \OC_L10n('core');
- \OC_JSON::error(array("data" => array("message" => $l->t("No temporary profile picture available, try again")) ));
- return;
- }
- $image = new \OC_Image($tmpavatar);
- $image->crop($crop['x'], $crop['y'], $crop['w'], $crop['h']);
- try {
- $avatar = new \OC_Avatar($user);
- $avatar->set($image->data());
- // Clean up
- \OC_Cache::remove('tmpavatar');
- \OC_JSON::success();
- } catch (\Exception $e) {
- \OC_JSON::error(array("data" => array("message" => $e->getMessage()) ));
- }
- }
- }
|