nextcloud/settings/ajax/changepassword.php

38 lines
1013 B
PHP
Raw Normal View History

<?php
// Init owncloud
require_once '../../lib/base.php';
2012-07-20 22:39:20 +04:00
OCP\JSON::callCheck();
$username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser();
$password = $_POST["password"];
$oldPassword=isset($_POST["oldpassword"])?$_POST["oldpassword"]:'';
// Check if we are a user
OC_JSON::checkLoggedIn();
2012-07-07 17:27:04 +04:00
OCP\JSON::callCheck();
2012-07-18 17:27:31 +04:00
$userstatus = null;
if(OC_Group::inGroup(OC_User::getUser(), 'admin')) {
2012-07-18 17:27:31 +04:00
$userstatus = 'admin';
}
if(OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) {
2012-07-19 21:32:59 +04:00
$userstatus = 'subadmin';
2012-07-18 17:27:31 +04:00
}
if(OC_User::getUser() == $username && OC_User::checkPassword($username, $oldPassword)) {
2012-07-18 17:27:31 +04:00
$userstatus = 'user';
}
if(is_null($userstatus)) {
OC_JSON::error( array( "data" => array( "message" => "Authentication error" )));
exit();
}
// Return Success story
if( OC_User::setPassword( $username, $password )) {
OC_JSON::success(array("data" => array( "username" => $username )));
}
else{
OC_JSON::error(array("data" => array( "message" => "Unable to change password" )));
}