blob: 54f6868d196e0036617fb683b6a22c66f1ca4a53 [file] [log] [blame]
<?php
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
require_once ('cmis_repository_wrapper.php');
$repo_url = $_SERVER["argv"][1];
$repo_username = $_SERVER["argv"][2];
$repo_password = $_SERVER["argv"][3];
$repo_search_text = $_SERVER["argv"][4];
$repo_debug = $_SERVER["argv"][5];
$client = new CMISService($repo_url, $repo_username, $repo_password);
if ($repo_debug)
{
print "Repository Information:\n===========================================\n";
print_r($client->workspace);
print "\n===========================================\n\n";
}
$query = sprintf("SELECT cmis:name,score() as rel from cmis:document WHERE CONTAINS('%s')", $repo_search_text);
$objs = $client->query($query);
if ($repo_debug)
{
print "Returned Objects\n:\n===========================================\n";
print_r($objs);
print "\n===========================================\n\n";
}
foreach ($objs->objectList as $obj)
{
print "Document: " . $obj->properties['cmis:name'] . "\n";
}
if ($repo_debug > 2)
{
print "Final State of CLient:\n===========================================\n";
print_r($client);
}