forked from tinify/wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTinify.php
More file actions
158 lines (121 loc) · 3.62 KB
/
Tinify.php
File metadata and controls
158 lines (121 loc) · 3.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
namespace Tinify;
const VERSION = "1.6.2";
class Tinify {
const AUTHENTICATED = true;
const ANONYMOUS = false;
private static $key = NULL;
private static $appIdentifier = NULL;
private static $proxy = NULL;
private static $compressionCount = NULL;
private static $remainingCredits = NULL;
private static $payingState = NULL;
private static $emailAddress = NULL;
private static $client = NULL;
public static function setKey($key) {
self::$key = $key;
self::$client = NULL;
}
public static function getKey() {
return self::$key;
}
public static function createKey($email, $options) {
$body = array_merge(array("email" => $email), $options);
$response = self::getClient(self::ANONYMOUS)->request("post", "/keys", $body);
self::setKey($response->body->key);
}
public static function setAppIdentifier($appIdentifier) {
self::$appIdentifier = $appIdentifier;
self::$client = NULL;
}
public static function setProxy($proxy) {
self::$proxy = $proxy;
self::$client = NULL;
}
public static function getCompressionCount() {
return self::$compressionCount;
}
public static function setCompressionCount($compressionCount) {
self::$compressionCount = $compressionCount;
}
public static function getRemainingCredits() {
return self::$remainingCredits;
}
public static function setRemainingCredits($remainingCredits) {
self::$remainingCredits = $remainingCredits;
}
public static function getPayingState() {
return self::$payingState;
}
public static function setPayingState($payingState) {
self::$payingState = $payingState;
}
public static function getEmailAddress() {
return self::$emailAddress;
}
public static function setEmailAddress($emailAddress) {
self::$emailAddress = $emailAddress;
}
public static function getClient($mode = self::AUTHENTICATED) {
if ($mode == self::AUTHENTICATED && !self::$key) {
throw new AccountException("Provide an API key with Tinify\setKey(...)");
}
if (!self::$client) {
self::$client = new Client(self::$key, self::$appIdentifier, self::$proxy);
}
return self::$client;
}
public static function setClient($client) {
self::$client = $client;
}
}
function setKey($key) {
return Tinify::setKey($key);
}
function getKey() {
return Tinify::getKey();
}
function createKey($email, $options) {
return Tinify::createKey($email, $options);
}
function setAppIdentifier($appIdentifier) {
return Tinify::setAppIdentifier($appIdentifier);
}
function setProxy($proxy) {
return Tinify::setProxy($proxy);
}
function getCompressionCount() {
return Tinify::getCompressionCount();
}
function compressionCount() {
return Tinify::getCompressionCount();
}
function remainingCredits() {
return Tinify::getRemainingCredits();
}
function payingState() {
return Tinify::getPayingState();
}
function emailAddress() {
return Tinify::getEmailAddress();
}
function fromFile($path) {
return Source::fromFile($path);
}
function fromBuffer($string) {
return Source::fromBuffer($string);
}
function fromUrl($string) {
return Source::fromUrl($string);
}
function validate() {
try {
Tinify::getClient()->request("get", "/keys/" . Tinify::getKey());
return true;
} catch (AccountException $err) {
if ($err->status == 429) return true;
throw $err;
} catch (ClientException $err) {
return true;
}
}