moodle/lib/alfresco/Service/Repository.php
Petr Skoda 431ac39634 MDL-26623 fix file permissions
The permissions are now going to be verified as part of the weekly release process.
2011-03-01 12:26:49 +01:00

140 lines
3.6 KiB
PHP

<?php
/*
* Copyright (C) 2005 Alfresco, Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* As a special exception to the terms and conditions of version 2.0 of
* the GPL, you may redistribute this Program in connection with Free/Libre
* and Open Source Software ("FLOSS") applications as described in Alfresco's
* FLOSS exception. You should have recieved a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing"
*/
// change by moodle
require_once $CFG->libdir.'/alfresco/Service/WebService/WebServiceFactory.php';
require_once $CFG->libdir.'/alfresco/Service/BaseObject.php';
if (isset($_SESSION) == false)
{
// Start the session
session_start();
}
// change by moodle
class Alfresco_Repository extends BaseObject
{
private $_connectionUrl;
private $_host;
private $_port;
public function __construct($connectionUrl="http://localhost:8080/alfresco/api")
{
$this->_connectionUrl = $connectionUrl;
$parts = parse_url($connectionUrl);
$this->_host = $parts["host"];
if (empty($parts["port"])) {
$this->_port = 80;
} else {
$this->_port = $parts["port"];
}
}
public function getConnectionUrl()
{
return $this->_connectionUrl;
}
public function getHost()
{
return $this->_host;
}
public function getPort()
{
return $this->_port;
}
public function authenticate($userName, $password)
{
// TODO need to handle exceptions!
$authenticationService = WebServiceFactory::getAuthenticationService($this->_connectionUrl);
$result = $authenticationService->startSession(array (
"username" => $userName,
"password" => $password
));
// Get the ticket and sessionId
$ticket = $result->startSessionReturn->ticket;
$sessionId = $result->startSessionReturn->sessionid;
// Store the session id for later use
if ($sessionId != null)
{
$sessionIds = null;
if (isset($_SESSION["sessionIds"]) == false)
{
$sessionIds = array();
}
else
{
$sessionIds = $_SESSION["sessionIds"];
}
$sessionIds[$ticket] = $sessionId;
$_SESSION["sessionIds"] = $sessionIds;
}
return $ticket;
}
public function createSession($ticket=null)
{
$session = null;
if ($ticket == null)
{
// TODO get ticket from some well known location ie: the $_SESSION
}
else
{
// TODO would be nice to be able to check that the ticket is still valid!
// Create new session
$session = new Session($this, $ticket);
}
return $session;
}
/**
* For a given ticket, returns the realated session id, null if one can not be found.
*/
public static function getSessionId($ticket)
{
$result = null;
if (isset($_SESSION["sessionIds"]) == true)
{
$result = $_SESSION["sessionIds"][$ticket];
}
return $result;
}
}
?>