aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/3rdparty/libraries/MOBIClass/EXTHHelper.php
blob: 275142bf8ff6b4176daf776ef315fe1cfbdb9755 (plain) (blame)
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
<?php
//Reference: http://wiki.mobileread.com/wiki/MOBI

class EXTHHelper{
	static function typeToText($type){
		$types = self::$types;
		if(isset($types[$type])){
			return $types[$type];
		}
		return $type;
	}
	static function textToType($text){
		$text = strtolower($text);
		if(isset(self::$flippedTypes[$text])){
			return self::$flippedTypes[$text];
		}
		return false;
	}
	
	static function convert($n, $size){
		$mask = 0xFF;
		$out = "";
		for($i = 0; $i < $size; $i++){
			$out = chr(($n & $mask) >> (8*$i)).$out;
			$mask = $mask << 8;
		}
		return $out;
	}
	
	static function getRightRepresentation($type, $value){
		if($type >= 100 && $type < 200){
			return $value;
		}else{
			return self::toHex($value);
		}
	}
	
	static function toHex($value){
		$out = "";
		for($i = 0, $len = strlen($value); $i < $len; $i++){
			if($i > 0) $out .= " ";
			$hex = dechex(ord($value[$i]));
			if(strlen($hex) < 2) $hex = "0".$hex;
			$out .= $hex;
		}
		return $out;
	}
	
	
	static private $types = array(
		1 => "drm server id",
		2 => "drm commerce id",
		3 => "drm ebookbase book id",
		100 => "author",
		101 => "publisher",
		102 => "imprint",
		103 => "description",
		104 => "isbn",
		105 => "subject",
		106 => "publishingdate",
		107 => "review",
		108 => "contributor",
		109 => "rights",
		110 => "subjectcode",
		111 => "type",
		112 => "source",
		113 => "asin",
		114 => "versionnumber",
		115 => "sample",
		116 => "startreading",
		118 => "retail price",
		119 => "retail price currency",
		201 => "coveroffset",
		202 => "thumboffset",
		203 => "hasfakecover",
		204 => "Creator Software",
		205 => "Creator Major Version",
		206 => "Creator Minor Version",
		207 => "Creator Build Number",
		208 => "watermark",
		209 => "tamper proof keys",
		300 => "fontsignature",
		401 => "clippinglimit",
		402 => "publisherlimit",
		403 => "403",
		404 => "ttsflag",
		501 => "cdetype",
		502 => "lastupdatetime",
		503 => "updatedtitle"
	);
	static private $flippedTypes = array(
		"drm server id" => 1,
		"drm commerce id" => 2,
		"drm ebookbase book id" => 3,
		"author" => 100,
		"publisher" => 101,
		"imprint" => 102,
		"description" => 103,
		"isbn" => 104,
		"subject" => 105,
		"publishingdate" => 106,
		"review" => 107,
		"contributor" => 108,
		"rights" => 109,
		"subjectcode" => 110,
		"type" => 111,
		"source" => 112,
		"asin" => 113,
		"versionnumber" => 114,
		"sample" => 115,
		"startreading" => 116,
		"retail price" => 118,
		"retail price currency" => 119,
		"coveroffset" => 201,
		"thumboffset" => 202,
		"hasfakecover" => 203,
		"Creator Software" => 204,
		"Creator Major Version" => 205,
		"Creator Minor Version" => 206,
		"Creator Build Number" => 207,
		"watermark" => 208,
		"tamper proof keys" => 209,
		"fontsignature" => 300,
		"clippinglimit" => 401,
		"publisherlimit" => 402,
		"403" => 403,
		"ttsflag" => 404,
		"cdetype" => 501,
		"lastupdatetime" => 502,
		"updatedtitle" => 503
	);
}