Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php declare(strict_types=1); namespace Sabre\CardDAV; use Sabre\DAV\PropFind; use Sab..

Decoded Output download

<?php

declare(strict_types=1);

namespace Sabre\CardDAV;

use Sabre\DAV\PropFind;
use Sabre\HTTP;

class SogoStripContentTypeTest extends \Sabre\AbstractDAVServerTestCase
{
    protected $setupCardDAV = true;
    protected $carddavAddressBooks = [
        [
            'id' => 1,
            'uri' => 'book1',
            'principaluri' => 'principals/user1',
        ],
    ];
    protected $carddavCards = [
        1 => [
            'card1.vcf' => "BEGIN:VCARD
VERSION:3.0
UID:12345
END:VCARD",
        ],
    ];

    public function testDontStrip()
    {
        $result = $this->server->getProperties('addressbooks/user1/book1/card1.vcf', ['{DAV:}getcontenttype']);
        self::assertEquals([
            '{DAV:}getcontenttype' => 'text/vcard; charset=utf-8',
        ], $result);
    }

    public function testStrip()
    {
        $this->server->httpRequest = new HTTP\Request('GET', '/', [
            'User-Agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 Lightning/1.2.1',
        ]);
        $result = $this->server->getProperties('addressbooks/user1/book1/card1.vcf', ['{DAV:}getcontenttype']);
        self::assertEquals([
            '{DAV:}getcontenttype' => 'text/x-vcard',
        ], $result);
    }

    public function testDontTouchOtherMimeTypes()
    {
        $this->server->httpRequest = new HTTP\Request('GET', '/addressbooks/user1/book1/card1.vcf', [
            'User-Agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 Lightning/1.2.1',
        ]);

        $propFind = new PropFind('hello', ['{DAV:}getcontenttype']);
        $propFind->set('{DAV:}getcontenttype', 'text/plain');
        $this->carddavPlugin->propFindLate($propFind, new \Sabre\DAV\SimpleCollection('foo'));
        self::assertEquals('text/plain', $propFind->get('{DAV:}getcontenttype'));
    }

    public function testStripWithoutGetContentType()
    {
        $this->server->httpRequest = new HTTP\Request('GET', '/addressbooks/user1/book1/card1.vcf', [
            'User-Agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 Lightning/1.2.1',
        ]);

        $propFind = new PropFind('hello', ['{DAV:}getcontenttype']);
        $this->carddavPlugin->propFindLate($propFind, new \Sabre\DAV\SimpleCollection('foo'));
        self::assertEquals(null, $propFind->get('{DAV:}getcontenttype')); // Property not present
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace Sabre\CardDAV;

use Sabre\DAV\PropFind;
use Sabre\HTTP;

class SogoStripContentTypeTest extends \Sabre\AbstractDAVServerTestCase
{
    protected $setupCardDAV = true;
    protected $carddavAddressBooks = [
        [
            'id' => 1,
            'uri' => 'book1',
            'principaluri' => 'principals/user1',
        ],
    ];
    protected $carddavCards = [
        1 => [
            'card1.vcf' => "BEGIN:VCARD\nVERSION:3.0\nUID:12345\nEND:VCARD",
        ],
    ];

    public function testDontStrip()
    {
        $result = $this->server->getProperties('addressbooks/user1/book1/card1.vcf', ['{DAV:}getcontenttype']);
        self::assertEquals([
            '{DAV:}getcontenttype' => 'text/vcard; charset=utf-8',
        ], $result);
    }

    public function testStrip()
    {
        $this->server->httpRequest = new HTTP\Request('GET', '/', [
            'User-Agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 Lightning/1.2.1',
        ]);
        $result = $this->server->getProperties('addressbooks/user1/book1/card1.vcf', ['{DAV:}getcontenttype']);
        self::assertEquals([
            '{DAV:}getcontenttype' => 'text/x-vcard',
        ], $result);
    }

    public function testDontTouchOtherMimeTypes()
    {
        $this->server->httpRequest = new HTTP\Request('GET', '/addressbooks/user1/book1/card1.vcf', [
            'User-Agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 Lightning/1.2.1',
        ]);

        $propFind = new PropFind('hello', ['{DAV:}getcontenttype']);
        $propFind->set('{DAV:}getcontenttype', 'text/plain');
        $this->carddavPlugin->propFindLate($propFind, new \Sabre\DAV\SimpleCollection('foo'));
        self::assertEquals('text/plain', $propFind->get('{DAV:}getcontenttype'));
    }

    public function testStripWithoutGetContentType()
    {
        $this->server->httpRequest = new HTTP\Request('GET', '/addressbooks/user1/book1/card1.vcf', [
            'User-Agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 Lightning/1.2.1',
        ]);

        $propFind = new PropFind('hello', ['{DAV:}getcontenttype']);
        $this->carddavPlugin->propFindLate($propFind, new \Sabre\DAV\SimpleCollection('foo'));
        self::assertEquals(null, $propFind->get('{DAV:}getcontenttype')); // Property not present
    }
}

Function Calls

None

Variables

None

Stats

MD5 bfca013c1f5485c3e37773c19a629739
Eval Count 0
Decode Time 157 ms