Exemplo n.º 1
0
 /**
  * @param string $toResolve
  * @return Uri
  * @link http://tools.ietf.org/html/rfc3986#section-5.2.2
  */
 public function resolve($toResolve)
 {
     $r = new Uri($toResolve);
     if ($r->__toString() === '') {
         return clone $this;
     }
     $base = $this;
     $t = new \StdClass();
     $t->scheme = '';
     $t->authority = '';
     $t->path = '';
     $t->query = '';
     $t->fragment = '';
     if ('' !== $r->getScheme()) {
         $t->scheme = $r->getScheme();
         $t->authority = $r->getAuthority();
         $t->path = $this->removeDotSegments($r->getPath());
         $t->query = $r->getQuery();
     } else {
         if ('' !== $r->getAuthority()) {
             $t->authority = $r->getAuthority();
             $t->path = $this->removeDotSegments($r->getPath());
             $t->query = $r->getQuery();
         } else {
             if ('' == $r->getPath()) {
                 $t->path = $base->getPath();
                 if ($r->getQuery()) {
                     $t->query = $r->getQuery();
                 } else {
                     $t->query = $base->getQuery();
                 }
             } else {
                 if ($r->getPath() && substr($r->getPath(), 0, 1) == "/") {
                     $t->path = $this->removeDotSegments($r->getPath());
                 } else {
                     $t->path = $this->mergePaths($base->getPath(), $r->getPath());
                 }
                 $t->query = $r->getQuery();
             }
             $t->authority = $base->getAuthority();
         }
         $t->scheme = $base->getScheme();
     }
     $t->fragment = $r->getFragment();
     $result = $this->reconstitute($t->scheme, $t->authority, $t->path, $t->query, $t->fragment);
     return new Uri($result);
 }
Exemplo n.º 2
0
Arquivo: Uri.php Projeto: stefk/jval
 private function buildResolvedUriAgainst(Uri $uri)
 {
     $scheme = $uri->getScheme();
     $authority = $uri->getAuthority();
     $path = $uri->getPath();
     $query = $uri->getQuery();
     if ($this->getAuthority()) {
         $authority = $this->getAuthority();
         $path = $this->getPath();
         $query = $this->getQuery();
     } elseif ($this->getPath()) {
         $path = $this->buildResolvedPathAgainst($uri->getPath());
         $query = $this->getQuery();
     } elseif ($this->getQuery()) {
         $query = $this->getQuery();
     }
     return $this->appendRelativeParts("{$scheme}://{$authority}{$path}", $query, $this->parts['fragment']);
 }
Exemplo n.º 3
0
 public function testSetPort()
 {
     $uri = new Uri('http', 'www.yahoo.com:8080');
     $this->assertEquals('www.yahoo.com:8080', $uri->getAuthority());
     $this->assertEquals('www.yahoo.com', $uri->getHost());
     $this->assertEquals(8080, $uri->getPort());
     $this->assertEquals('http://www.yahoo.com:8080', $uri->toString());
 }
Exemplo n.º 4
0
 public function testAuthority()
 {
     $uri1 = new Uri('http://*****:*****@example.com:81');
     $this->assertEquals('user:password@example.com:81', $uri1->getAuthority());
 }