summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-04-17 01:04:43 +0200
committerJakob Sack <kde@jakobsack.de>2011-04-17 01:04:43 +0200
commitcb2d8db9ce8bbffab830c537d9c3ab69fcba5720 (patch)
tree2d5abf13c83cdcacef5886a8b58f30b2e857eec0 /lib
parentc4287162c4fb16e5b85a103aabbbbe7a7eebe4c7 (diff)
parent2940f818b4066214137c1c7a89d4327cd17f070e (diff)
downloadnextcloud-server-cb2d8db9ce8bbffab830c537d9c3ab69fcba5720.tar.gz
nextcloud-server-cb2d8db9ce8bbffab830c537d9c3ab69fcba5720.zip
Merge branch 'refactoring' of git://anongit.kde.org/owncloud into refactoring
Diffstat (limited to 'lib')
-rw-r--r--lib/group.php9
-rw-r--r--lib/installer.php123
-rw-r--r--lib/ocsclient.php23
3 files changed, 155 insertions, 0 deletions
diff --git a/lib/group.php b/lib/group.php
index d8a59a139a5..1aaadb507b4 100644
--- a/lib/group.php
+++ b/lib/group.php
@@ -142,4 +142,13 @@ class OC_GROUP {
public static function getGroups() {
return self::$_backend->getGroups();
}
+
+ /**
+ * create a new group
+ *
+ * @param string $name Name of the group
+ */
+ public static function createGroup($name) {
+ return self::$_backend->createGroup($name);
+ }
}
diff --git a/lib/installer.php b/lib/installer.php
new file mode 100644
index 00000000000..a87e7541fc4
--- /dev/null
+++ b/lib/installer.php
@@ -0,0 +1,123 @@
+<?php
+
+if(isset($_POST['install']) and $_POST['install']=='true'){
+ $errors=OC_INSTALLER::install($_POST);
+ if(count($errors)>0){
+ OC_TEMPLATE::printGuestPage( "", "error", array( "errors" => $errors ));
+ }else{
+ header( "Location: $WEBROOT");
+ exit();
+ }
+}
+
+class OC_INSTALLER{
+ public static function install($options){
+ $error=array();
+ $dbtype=$options['dbtype'];
+ if(empty($options['login'])){
+ $error[]=array('error'=>'username not set');
+ };
+ if(empty($options['pass'])){
+ $error[]=array('error'=>'password not set');
+ };
+ if(empty($options['directory'])){
+ $error[]=array('error'=>'data directory not set');
+ };
+ if($dbtype=='mysql'){//mysql needs more config options
+ if(empty($options['dbuser'])){
+ $error[]=array('error'=>'database user directory not set');
+ };
+ if(empty($options['dbpass'])){
+ $error[]=array('error'=>'database password directory not set');
+ };
+ if(empty($options['dbname'])){
+ $error[]=array('error'=>'database name directory not set');
+ };
+ if(empty($options['dbhost'])){
+ $error[]=array('error'=>'database host directory not set');
+ };
+ if(!isset($options['dbtableprefix'])){
+ $error[]=array('error'=>'database table prefix directory not set');
+ };
+ }
+ if(count($error)==0){ //no errors, good
+ $username=$options['login'];
+ $password=$options['pass'];
+ $datadir=$options['directory'];
+
+ //write the config file
+ OC_CONFIG::setValue('datadirectory',$datadir);
+ OC_CONFIG::setValue('dbtype',$dbtype);
+ if($dbtype=='mysql'){
+ $dbuser=$options['dbuser'];
+ $dbpass=$options['dbpass'];
+ $dbname=$options['dbname'];
+ $dbhost=$options['dbhost'];
+ $dbtableprefix=$options['dbtableprefix'];
+ OC_CONFIG::setValue('dbname',$dbname);
+ OC_CONFIG::setValue('dbhost',$dbhost);
+ OC_CONFIG::setValue('dbtableprefix',$dbtableprefix);
+
+ //check if the database user has admin right
+ $connection=mysql_connect($dbhost, $dbuser, $dbpass);
+ if(!$connection) {
+ $error[]=array('error'=>'mysql username and/or password not valid','you need to enter either an existing account, or the administrative account if you wish to create a new user for ownCloud');
+ }else{
+ $query="SELECT user FROM mysql.user WHERE user='$dbuser'";//this should be enough to check for admin rights in mysql
+ if(mysql_query($query,$connection)){
+ //use the admin login data for the new database user
+ self::createDBUser($username,$password);
+ OC_CONFIG::setValue('dbuser',$username);
+ OC_CONFIG::setValue('dbpass',$password);
+ }else{
+ OC_CONFIG::setValue('dbuser',$dbuser);
+ OC_CONFIG::setValue('dbpass',$dbpass);
+
+ //create the database
+ self::createDatabase($dbname,$dbuser);
+ }
+ }
+ mysql_close($connection);
+ }
+ OC_USER::createUser($username,$password);
+ OC_GROUP::createGroup('admin');
+ OC_GROUP::addToGroup($username,'admin');
+ OC_CONFIG::setValue('installed',true);
+ }
+ return $error;
+ }
+
+ public static function createDatabase($name,$adminUser,$adminPwd){//TODO refactoring this
+ $CONFIG_DBHOST=$options['host'];
+ $CONFIG_DBNAME=$options['name'];
+ $CONFIG_DBUSER=$options['user'];
+ $CONFIG_DBPWD=$options['pass'];
+ $CONFIG_DBTYPE=$options['type'];
+ //we cant user OC_BD functions here because we need to connect as the administrative user.
+ $query="CREATE DATABASE IF NOT EXISTS `$name`";
+ $result = mysql_query($query,$connection);
+ if (!$result) {
+ $entry='DB Error: "'.mysql_error($connection).'"<br />';
+ $entry.='Offending command was: '.$query.'<br />';
+ echo($entry);
+ }
+ $query="GRANT ALL PRIVILEGES ON `$name` . * TO '$user'";
+ $result = mysql_query($query,$connection);
+ if (!$result) {
+ $entry='DB Error: "'.mysql_error($connection).'"<br />';
+ $entry.='Offending command was: '.$query.'<br />';
+ echo($entry);
+ }
+ }
+
+ private static function createDBUser($name,$password){
+ //we need to create 2 accounts, one for global use and one for local user. if we don't speccify the local one,
+ // the anonymous user would take precedence when there is one.
+ $query="CREATE USER 'name'@'localhost' IDENTIFIED BY '$password'";
+ $result = mysql_query($query,$connection);
+ $query="CREATE USER '$name'@'%' IDENTIFIED BY '$password'";
+ $result = mysql_query($query,$connection);
+ }
+}
+
+?> \ No newline at end of file
diff --git a/lib/ocsclient.php b/lib/ocsclient.php
index 921bd5489a2..9f6a79e7479 100644
--- a/lib/ocsclient.php
+++ b/lib/ocsclient.php
@@ -114,6 +114,29 @@ class OC_OCSCLIENT{
return $app;
}
+ /**
+ * @brief Get all the knowledgebase entries from the OCS server
+ * @returns array with q and a data
+ *
+ * This function returns a list of all the knowledgebase entries from the OCS server
+ */
+ public static function getKnownledgebaseEntries(){
+ $url='http://api.opendesktop.org/v1/knowledgebase/data?page=0&pagesize=10';
+
+ $kbe=array();
+ $xml=file_get_contents($url);
+ $data=simplexml_load_string($xml);
+
+ $tmp=$data->data->content;
+ for($i = 0; $i < count($tmp); $i++) {
+ $kb=array();
+ $kb['id']=$tmp[$i]->id;
+ $kb['name']=$tmp[$i]->name;
+ $kb['description']=$tmp[$i]->description;
+ $kbe[]=$kb;
+ }
+ return $kb;
+ }