getOriginalChecksum() public method

Get the original checksum of the current image data
public getOriginalChecksum ( ) : string
return string
Esempio n. 1
0
 /**
  * {@inheritdoc}
  */
 public function insertImage($publicKey, $imageIdentifier, Image $image)
 {
     $now = time();
     if ($added = $image->getAddedDate()) {
         $added = $added->getTimestamp();
     }
     if ($updated = $image->getUpdatedDate()) {
         $updated = $updated->getTimestamp();
     }
     if ($id = $this->getImageId($publicKey, $imageIdentifier)) {
         return (bool) $this->getConnection()->update($this->tableNames['imageinfo'], array('updated' => $now), array('id' => $id));
     }
     return (bool) $this->getConnection()->insert($this->tableNames['imageinfo'], array('size' => $image->getFilesize(), 'publicKey' => $publicKey, 'imageIdentifier' => $imageIdentifier, 'extension' => $image->getExtension(), 'mime' => $image->getMimeType(), 'added' => $added ?: $now, 'updated' => $updated ?: $now, 'width' => $image->getWidth(), 'height' => $image->getHeight(), 'checksum' => $image->getChecksum(), 'originalChecksum' => $image->getOriginalChecksum()));
 }
Esempio n. 2
0
 public function testCanSetAndGetTheOriginalChecksum()
 {
     $checksum = md5(__FILE__);
     $this->assertSame($this->image, $this->image->setOriginalChecksum($checksum));
     $this->assertSame($checksum, $this->image->getOriginalChecksum());
 }
Esempio n. 3
0
 /**
  * {@inheritdoc}
  */
 public function insertImage($publicKey, $imageIdentifier, Image $image)
 {
     $now = time();
     if ($added = $image->getAddedDate()) {
         $added = $added->getTimestamp();
     }
     if ($updated = $image->getUpdatedDate()) {
         $updated = $updated->getTimestamp();
     }
     if ($this->imageExists($publicKey, $imageIdentifier)) {
         try {
             $this->getImageCollection()->update(['publicKey' => $publicKey, 'imageIdentifier' => $imageIdentifier], ['$set' => ['updated' => $now]], ['multiple' => false]);
             return true;
         } catch (MongoException $e) {
             throw new DatabaseException('Unable to save image data', 500, $e);
         }
     }
     $data = ['size' => $image->getFilesize(), 'publicKey' => $publicKey, 'imageIdentifier' => $imageIdentifier, 'extension' => $image->getExtension(), 'mime' => $image->getMimeType(), 'metadata' => [], 'added' => $added ?: $now, 'updated' => $updated ?: $now, 'width' => $image->getWidth(), 'height' => $image->getHeight(), 'checksum' => $image->getChecksum(), 'originalChecksum' => $image->getOriginalChecksum()];
     try {
         $this->getImageCollection()->insert($data);
     } catch (MongoException $e) {
         throw new DatabaseException('Unable to save image data', 500, $e);
     }
     return true;
 }