27 lines
720 B
PHP
27 lines
720 B
PHP
<?php
|
|
|
|
// Init owncloud
|
|
require_once('../../lib/base.php');
|
|
|
|
// We send json data
|
|
header( "Content-Type: application/jsonrequest" );
|
|
|
|
// Check if we are a user
|
|
if( !OC_USER::isLoggedIn() || !OC_GROUP::inGroup( $_SESSION['user_id'], 'admin' )){
|
|
echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
|
|
exit();
|
|
}
|
|
|
|
$username = $_POST["username"];
|
|
$password = $_POST["password"];
|
|
|
|
// Return Success story
|
|
if( OC_USER::setPassword( $username, $password )){
|
|
echo json_encode( array( "status" => "success", "data" => array( "username" => $username )));
|
|
}
|
|
else{
|
|
echo json_encode( array( "status" => "error", "data" => array( "message" => "Unable to change password" )));
|
|
}
|
|
|
|
?>
|