2011-04-18 17:07:14 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
|
|
|
require_once('../../lib/base.php');
|
|
|
|
|
2011-06-20 16:51:33 +04:00
|
|
|
$l=new OC_L10N('settings');
|
|
|
|
|
2011-04-18 17:07:14 +04:00
|
|
|
// We send json data
|
2011-08-12 16:09:43 +04:00
|
|
|
header("Content-Type: application/jsonrequest");
|
2011-04-18 17:07:14 +04:00
|
|
|
|
|
|
|
// Check if we are a user
|
2011-08-12 16:09:43 +04:00
|
|
|
if(!OC_User::isLoggedIn()){
|
|
|
|
echo json_encode(array("status" => "error", "data" => array("message" => $l->t("Authentication error"))));
|
2011-04-18 17:07:14 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get data
|
2011-08-12 16:09:43 +04:00
|
|
|
if(!isset($_POST["password"]) && !isset($_POST["oldpassword"])){
|
|
|
|
echo json_encode(array("status" => "error", "data" => array("message" => $l->t("You have to enter the old and the new password!"))));
|
2011-04-18 17:07:14 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the old password is correct
|
2011-08-12 16:09:43 +04:00
|
|
|
if(!OC_User::checkPassword($_SESSION["user_id"], $_POST["oldpassword"])){
|
|
|
|
echo json_encode(array("status" => "error", "data" => array("message" => $l->t("Your old password is wrong!"))));
|
2011-04-18 17:07:14 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change password
|
2011-08-12 16:09:43 +04:00
|
|
|
if(OC_User::setPassword($_SESSION["user_id"], $_POST["password"])){
|
|
|
|
echo json_encode(array("status" => "success", "data" => array("message" => $l->t("Password changed"))));
|
|
|
|
OC_Crypt::changekeypasscode($_POST["password"]);
|
|
|
|
}else{
|
|
|
|
echo json_encode(array("status" => "error", "data" => array("message" => $l->t("Unable to change password"))));
|
2011-04-18 17:07:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|