Example #1
0
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
if ($argc < 6) {
    die("Usage: " . $argv[0] . " project_id package_id release_id file_path comment");
}
$project_id = $argv[1];
$package_id = $argv[2];
$release_id = $argv[3];
$file = $argv[4];
$comment = $argv[5];
$type_id = null;
$processor_id = null;
$reference_md5 = null;
$filename = array_pop(explode('/', $file));
$base64_contents = base64_encode(file_get_contents($file));
$server_url = isset($_SERVER['TULEAP_SERVER']) ? $_SERVER['TULEAP_SERVER'] : 'http://sonde.cro.enalean.com';
$login = isset($_SERVER['TULEAP_USER']) ? $_SERVER['TULEAP_USER'] : '******';
$password = isset($_SERVER['TULEAP_PASSWORD']) ? $_SERVER['TULEAP_PASSWORD'] : '******';
$soapLogin = new SoapClient($server_url . '/soap/?wsdl', array('cache_wsdl' => WSDL_CACHE_NONE));
// Establish connection to the server
$requesterSessionHash = $soapLogin->login($login, $password)->session_hash;
$svn_client = new SoapClient($server_url . '/soap/?wsdl', array('cache_wsdl' => WSDL_CACHE_NONE));
var_dump($svn_client->addFile($requesterSessionHash, $project_id, $package_id, $release_id, $filename, $base64_contents, $type_id, $processor_id, $reference_md5, $comment));
$soapLogin->logout($requesterSessionHash);