mirror of
https://github.com/Anvilcraft/jensmemes
synced 2024-11-13 21:41:27 +01:00
69 lines
2 KiB
PHP
69 lines
2 KiB
PHP
<?php
|
|
|
|
namespace Tinify;
|
|
|
|
class Source {
|
|
private $url, $commands;
|
|
|
|
public static function fromFile($path) {
|
|
return self::fromBuffer(file_get_contents($path));
|
|
}
|
|
|
|
public static function fromBuffer($string) {
|
|
$response = Tinify::getClient()->request("post", "/shrink", $string);
|
|
return new self($response->headers["location"]);
|
|
}
|
|
|
|
public static function fromUrl($url) {
|
|
$body = array("source" => array("url" => $url));
|
|
$response = Tinify::getClient()->request("post", "/shrink", $body);
|
|
return new self($response->headers["location"]);
|
|
}
|
|
|
|
public function __construct($url, $commands = array()) {
|
|
$this->url = $url;
|
|
$this->commands = $commands;
|
|
}
|
|
|
|
public function preserve() {
|
|
$options = $this->flatten(func_get_args());
|
|
$commands = array_merge($this->commands, array("preserve" => $options));
|
|
return new self($this->url, $commands);
|
|
}
|
|
|
|
public function resize($options) {
|
|
$commands = array_merge($this->commands, array("resize" => $options));
|
|
return new self($this->url, $commands);
|
|
}
|
|
|
|
public function store($options) {
|
|
$response = Tinify::getClient()->request("post", $this->url,
|
|
array_merge($this->commands, array("store" => $options)));
|
|
return new Result($response->headers, $response->body);
|
|
}
|
|
|
|
public function result() {
|
|
$response = Tinify::getClient()->request("get", $this->url, $this->commands);
|
|
return new Result($response->headers, $response->body);
|
|
}
|
|
|
|
public function toFile($path) {
|
|
return $this->result()->toFile($path);
|
|
}
|
|
|
|
public function toBuffer() {
|
|
return $this->result()->toBuffer();
|
|
}
|
|
|
|
private static function flatten($options) {
|
|
$flattened = array();
|
|
foreach ($options as $option) {
|
|
if (is_array($option)) {
|
|
$flattened = array_merge($flattened, $option);
|
|
} else {
|
|
array_push($flattened, $option);
|
|
}
|
|
}
|
|
return $flattened;
|
|
}
|
|
}
|