aboutsummaryrefslogtreecommitdiffstats
path: root/admin/ajax/createuser.php
blob: a6e4ec0e93d85ad1f1aabe5f56b616052a8a96a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?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();
}

$groups = array();
if( isset( $_POST["groups"] )){
	$groups = $_POST["groups"];
}
$username = $_POST["username"];
$password = $_POST["password"];

// Does the group exist?
if( in_array( $username, OC_USER::getUsers())){
	echo json_encode( array( "status" => "error", "data" => array( "message" => "User already exists" )));
	exit();
}

// Return Success story
if( OC_USER::createUser( $username, $password )){
	foreach( $groups as $i ){
		OC_GROUP::addToGroup( $username, $i );
	}
	echo json_encode( array( "status" => "success", "data" => array( "username" => $username, "groups" => implode( ", ", OC_GROUP::getUserGroups( $username )))));
}
else{
	echo json_encode( array( "status" => "error", "data" => array( "message" => "Unable to add user" )));
}

?>