Автор: Michael Dowling (mtdowling@gmail.com)
Наследование: implements Gaufrette\Adapter, implements Gaufrette\Adapter\MetadataSupporter, implements Gaufrette\Adapter\ListKeysAware, implements Gaufrette\Adapter\SizeCalculator
Пример #1
0
 /**
  * Returns the url for file
  * By default absolute path to file is returned
  * Otherwise when $options array contain key `relative` set as true, relative path will be returned
  *
  * @param $key
  * @param array $options
  * @return mixed
  */
 public function getUrl($key, array $options = [])
 {
     $url = parent::getUrl($key, $options);
     if (isset($options['relative']) && $options['relative']) {
         $url = parse_url($url, PHP_URL_PATH);
     }
     return $url;
 }
Пример #2
0
 public function testGetsObjectUrlsWithDirectory()
 {
     $client = $this->getClient();
     $adapter = new AwsS3($client, 'bucket', array('directory' => 'bar'));
     $this->assertEquals('https://bucket.s3.amazonaws.com/bar/foo', $adapter->getUrl('foo'));
 }
Пример #3
0
 public function shouldListKeysWithoutDirectory()
 {
     $client = $this->getClient();
     $adapter = new AwsS3($client, 'bucket', array('directory' => 'bar'));
     $adapter->write('test.txt', 'some content');
     $keys = $adapter->listKeys();
     $this->assertEquals('test.txt', $keys['key']);
 }