Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AbstractService.php « ObjectStore « OpenCloud « lib « php-opencloud « 3rdparty « files_external « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a2298d60ed69097216d346bc3c3b3f015f85d67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
 * PHP OpenCloud library.
 * 
 * @copyright Copyright 2013 Rackspace US, Inc. See COPYING for licensing information.
 * @license   https://www.apache.org/licenses/LICENSE-2.0 Apache 2.0
 * @version   1.6.0
 * @author    Glen Campbell <glen.campbell@rackspace.com>
 * @author    Jamie Hannaford <jamie.hannaford@rackspace.com>
 */

namespace OpenCloud\ObjectStore;

use OpenCloud\Common\Service as CommonService;

define('SWIFT_MAX_OBJECT_SIZE', 5 * 1024 * 1024 * 1024 + 1);

/**
 * An abstract base class for common code shared between ObjectStore\Service
 * (container) and ObjectStore\CDNService (CDN containers).
 * 
 * @todo Maybe we use Traits instead of this small abstract class?
 */
abstract class AbstractService extends CommonService
{

    const MAX_CONTAINER_NAME_LEN    = 256;
    const MAX_OBJECT_NAME_LEN       = 1024;
    const MAX_OBJECT_SIZE           = SWIFT_MAX_OBJECT_SIZE;

    /**
     * Creates a Container resource object.
     * 
     * @param  mixed $cdata  The name of the container or an object from which to set values
     * @return OpenCloud\ObjectStore\Resource\Container
     */
    public function container($cdata = null)
    {
        return new Resource\Container($this, $cdata);
    }

    /**
     * Returns a Collection of Container objects.
     *
     * @param  array $filter  An array to filter the results
     * @return OpenCloud\Common\Collection
     */
    public function containerList(array $filter = array())
    {
        $filter['format'] = 'json';
        
        return $this->collection(
        	'OpenCloud\ObjectStore\Resource\Container', $this->url(null, $filter)
        );
    }

}