private function createTarget(Project $project)
 {
     $client = new SoapClient($this->wsdl_url);
     // Establish connection to the server
     $session_hash = $client->login($this->user_login, $this->user_password)->session_hash;
     $root_folder_id = (int) $client->getRootFolder($session_hash, $project->getID());
     return (int) $client->createDocmanFolder($session_hash, $project->getID(), $root_folder_id, 'Docman v1 import', 'Documents imported from legacy documentation system on ' . date('c', $_SERVER['REQUEST_TIME']), 'begin', 'none', array(array('type' => DocmanV1_XMLExportData::V2_SOAP_PERM_NONE, 'ugroup_id' => ProjectUGroup::ANONYMOUS), array('type' => DocmanV1_XMLExportData::V2_SOAP_PERM_NONE, 'ugroup_id' => ProjectUGroup::REGISTERED), array('type' => DocmanV1_XMLExportData::V2_SOAP_PERM_NONE, 'ugroup_id' => ProjectUGroup::PROJECT_MEMBERS), array('type' => DocmanV1_XMLExportData::V2_SOAP_PERM_MANAGE, 'ugroup_id' => ProjectUGroup::PROJECT_ADMIN)), array(), 'admin', $_SERVER['REQUEST_TIME'], $_SERVER['REQUEST_TIME']);
 }
Example #2
0
                    $files = $client->getFiles($session_hash, $project->group_id, $package->package_id, $release->release_id);
                    echo '<li>';
                    echo $release->name;
                    echo '<ul>';
                    foreach ($files as $file) {
                        echo '<li>' . $file->file_name . ' (' . $file->file_size . ' Ko)</li>';
                    }
                    echo '</ul>';
                    echo '</li>';
                }
                echo '</ul>';
                echo '</li>';
            }
            echo '</ul>';
            // DOCMAN
            echo '<li>DOCMAN SERVICE (one level)</li>';
            $root_item_id = $client->getRootFolder($session_hash, $project->group_id);
            $folder_list = $client->listFolder($session_hash, $project->group_id, $root_item_id);
            echo '<ul>';
            foreach ($folder_list as $folder) {
                echo '<li>';
                echo $folder->title;
                echo '</li>';
            }
            echo '</ul>';
        }
    }
    echo '</ul>';
} catch (SoapFault $fault) {
    var_dump($fault);
}
Example #3
0
 * Copyright (c) Enalean, 2014. All Rights Reserved.
 *
 * This file is a part of Tuleap.
 *
 * Tuleap 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.
 *
 * Tuleap 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 Tuleap. If not, see <http://www.gnu.org/licenses/>.
 */
if ($argc != 2) {
    die("Usage: " . $argv[0] . " project_id \n");
}
$serverURL = getenv('TULEAP_SERVER') ? getenv('TULEAP_SERVER') : 'http://my..tuleap.example.com';
$login = getenv('TULEAP_USER') ? getenv('TULEAP_USER') : 'admin';
$password = getenv('TULEAP_PASSWORD') ? getenv('TULEAP_PASSWORD') : 'siteadmin';
$soapLogin = new SoapClient($serverURL . '/soap/?wsdl', array('cache_wsdl' => WSDL_CACHE_NONE));
// Establish connection to the server
$requesterSessionHash = $soapLogin->login($login, $password)->session_hash;
//save values
$project_id = $argv[1];
$root_id = $soapLogin->getRootFolder($requesterSessionHash, $project_id);
$response = $soapLogin->createDocmanLink($requesterSessionHash, $project_id, $root_id, 'Test link from SOAP', 'description', 'begin', 'approved', '', 'http://tuleap.org', '', '', $login, '', '');
var_dump($response);