Completed
Push — master ( 8bcfe7...12792b )
by Rémi
03:26
created

TwitterVariantMediaSerializer::canUnserialize()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 12

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 0
cts 0
cp 0
rs 10
cc 3
eloc 2
nc 3
nop 1
crap 12
1
<?php
2
3
namespace Twitter\Serializer;
4
5
use Twitter\Object\TwitterVariantMedia;
6
use Twitter\TwitterSerializable;
7
use Twitter\TwitterSerializer;
8
9
class TwitterVariantMediaSerializer implements TwitterSerializer
10
{
11
    /**
12
     * @param  TwitterSerializable $object
13
     * @return \stdClass
14
     */
15 6
    public function serialize(TwitterSerializable $object)
16
    {
17 6
        if (!$this->canSerialize($object)) {
18 3
            throw new \InvalidArgumentException('$object must be an instance of TwitterVariantMedia');
19
        }
20
21 3
        $variantMedia = new \stdClass();
22 3
        $variantMedia->content_type = $object->getContentType();
0 ignored issues
show
Bug introduced by
It seems like you code against a concrete implementation and not the interface Twitter\TwitterSerializable as the method getContentType() does only exist in the following implementations of said interface: Twitter\Object\TwitterVariantMedia.

Let’s take a look at an example:

interface User
{
    /** @return string */
    public function getPassword();
}

class MyUser implements User
{
    public function getPassword()
    {
        // return something
    }

    public function getDisplayName()
    {
        // return some name.
    }
}

class AuthSystem
{
    public function authenticate(User $user)
    {
        $this->logger->info(sprintf('Authenticating %s.', $user->getDisplayName()));
        // do something.
    }
}

In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.

Available Fixes

  1. Change the type-hint for the parameter:

    class AuthSystem
    {
        public function authenticate(MyUser $user) { /* ... */ }
    }
    
  2. Add an additional type-check:

    class AuthSystem
    {
        public function authenticate(User $user)
        {
            if ($user instanceof MyUser) {
                $this->logger->info(/** ... */);
            }
    
            // or alternatively
            if ( ! $user instanceof MyUser) {
                throw new \LogicException(
                    '$user must be an instance of MyUser, '
                   .'other instances are not supported.'
                );
            }
    
        }
    }
    
Note: PHP Analyzer uses reverse abstract interpretation to narrow down the types inside the if block in such a case.
  1. Add the method to the interface:

    interface User
    {
        /** @return string */
        public function getPassword();
    
        /** @return string */
        public function getDisplayName();
    }
    
Loading history...
23 3
        $variantMedia->url = $object->getUrl();
0 ignored issues
show
Bug introduced by
It seems like you code against a concrete implementation and not the interface Twitter\TwitterSerializable as the method getUrl() does only exist in the following implementations of said interface: Twitter\Object\AbstractTwitterMedia, Twitter\Object\TwitterExtendedEntity, Twitter\Object\TwitterMedia, Twitter\Object\TwitterUrl, Twitter\Object\TwitterVariantMedia.

Let’s take a look at an example:

interface User
{
    /** @return string */
    public function getPassword();
}

class MyUser implements User
{
    public function getPassword()
    {
        // return something
    }

    public function getDisplayName()
    {
        // return some name.
    }
}

class AuthSystem
{
    public function authenticate(User $user)
    {
        $this->logger->info(sprintf('Authenticating %s.', $user->getDisplayName()));
        // do something.
    }
}

In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.

Available Fixes

  1. Change the type-hint for the parameter:

    class AuthSystem
    {
        public function authenticate(MyUser $user) { /* ... */ }
    }
    
  2. Add an additional type-check:

    class AuthSystem
    {
        public function authenticate(User $user)
        {
            if ($user instanceof MyUser) {
                $this->logger->info(/** ... */);
            }
    
            // or alternatively
            if ( ! $user instanceof MyUser) {
                throw new \LogicException(
                    '$user must be an instance of MyUser, '
                   .'other instances are not supported.'
                );
            }
    
        }
    }
    
Note: PHP Analyzer uses reverse abstract interpretation to narrow down the types inside the if block in such a case.
  1. Add the method to the interface:

    interface User
    {
        /** @return string */
        public function getPassword();
    
        /** @return string */
        public function getDisplayName();
    }
    
Loading history...
24 3
        $variantMedia->bitrate = $object->getBitrate();
0 ignored issues
show
Bug introduced by
It seems like you code against a concrete implementation and not the interface Twitter\TwitterSerializable as the method getBitrate() does only exist in the following implementations of said interface: Twitter\Object\TwitterVariantMedia.

Let’s take a look at an example:

interface User
{
    /** @return string */
    public function getPassword();
}

class MyUser implements User
{
    public function getPassword()
    {
        // return something
    }

    public function getDisplayName()
    {
        // return some name.
    }
}

class AuthSystem
{
    public function authenticate(User $user)
    {
        $this->logger->info(sprintf('Authenticating %s.', $user->getDisplayName()));
        // do something.
    }
}

In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.

Available Fixes

  1. Change the type-hint for the parameter:

    class AuthSystem
    {
        public function authenticate(MyUser $user) { /* ... */ }
    }
    
  2. Add an additional type-check:

    class AuthSystem
    {
        public function authenticate(User $user)
        {
            if ($user instanceof MyUser) {
                $this->logger->info(/** ... */);
            }
    
            // or alternatively
            if ( ! $user instanceof MyUser) {
                throw new \LogicException(
                    '$user must be an instance of MyUser, '
                   .'other instances are not supported.'
                );
            }
    
        }
    }
    
Note: PHP Analyzer uses reverse abstract interpretation to narrow down the types inside the if block in such a case.
  1. Add the method to the interface:

    interface User
    {
        /** @return string */
        public function getPassword();
    
        /** @return string */
        public function getDisplayName();
    }
    
Loading history...
25
26 3
        return $variantMedia;
27
    }
28
29
    /**
30
     * @param  \stdClass $obj
31
     * @param  array     $context
32
     * @return TwitterVariantMedia
33
     */
34 3
    public function unserialize($obj, array $context = [])
35
    {
36 3
        if (!$this->canUnserialize($obj)) {
37
            throw new \InvalidArgumentException('$object is not unserializable');
38
        }
39
40
        return TwitterVariantMedia::create($obj->content_type, $obj->url, $obj->bitrate?:null);
41
    }
42 24
43
    /**
44 24
     * @param  TwitterSerializable $object
45
     * @return boolean
46
     */
47
    public function canSerialize(TwitterSerializable $object)
48
    {
49
        return $object instanceof TwitterVariantMedia;
50
    }
51
52
    /**
53
     * @param  \stdClass $object
54
     * @return boolean
55
     */
56
    public function canUnserialize($object)
57
    {
58
        return isset($object->content_type) && isset($object->url) && isset($object->bitrate);
59
    }
60
61
    /**
62
     * @return TwitterVariantMediaSerializer
63
     */
64
    public static function build()
65
    {
66
        return new self();
67
    }
68
}
69