-
Notifications
You must be signed in to change notification settings - Fork 402
/
Copy pathMapper.php
executable file
·122 lines (109 loc) · 4.18 KB
/
Mapper.php
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
<?php
namespace net\authorize\util;
class Mapper{
private $classes = array();
// private $dir = __DIR__ . "/../../yml/v1/";
// private function __construct() {
// $files = scandir($this->dir);
// foreach ($files as $file) {
// // echo "filename:" . $file . "\n";
// // Elementing the ..
// if($file != "." && $file != ".." ){
// $value = Yaml::parseFile($this->dir.$file);
// //var_dump($value);
// //array_push($classes, $value);
// //var_dump($classes);
// //echo $value['net\authorize\api\contract\v1\ANetApiRequestType']['properties']['merchantAuthentication']['type']."\n";
// $key = key($value);
// $this->classes[$key] = $value[$key];
// //break;
// }
// }
// }
private function __construct() {
$this->classes = json_decode(file_get_contents(__DIR__ ."/classes.json"), true);
}
public static function Instance()
{
static $inst = null;
if ($inst === null) {
$inst = new Mapper();
}
return $inst;
}
// public function getClass(string $classname, string $property){
// if(isset($this->classes[$classname]['properties'][$property]['type'])){
// return $this->classes[$classname]['properties'][$property]['type'];
// }
// else if ($property == "refId" || $property == "sessionToken" ){
// return 'string';
// }
// else if ($property == "messages" ){
// return 'net\authorize\api\contract\v1\MessagesType';
// }
// else{
// echo "Error finding in YAML - ".$classname." ".$property."\n";
// return 'string';
// }
// // return $this->classes[$classname]['properties'][$property]['type'];
// }
public function getClass($class, $property){
// make the first letter of property as lowercase as all properties are lowercase
$property = lcfirst($property);
//echo "getClass calling : class - " . $class . " property - " . $property . "\n";
$obj = new MapperObj;
if(isset($this->classes[$class]['properties'][$property]['type'])){
$className = $this->classes[$class]['properties'][$property]['type'];
if (stripos($className, "DateTime<'Y-m-d'>") !== false) {
$className = 'Date';
}
else if (stripos($className, "DateTime") !== false) {
$className = 'DateTime';
}
if(substr( $className, 0, 5 ) === "array") {
$className = ltrim($className, 'array<');
$className = rtrim($className, '>');
$obj->isArray = true;
if(isset($this->classes[$class]['properties'][$property]['xml_list']['entry_name'])){
// echo $file."\t\t\t\t\t\t\t\t\t";
// echo $propKey." :: ".$prop['serialized_name']." - ".$prop['xml_list']['entry_name']." - ".$prop['xml_list']['inline'];
// echo "\n";
$obj->isInlineArray = $this->classes[$class]['properties'][$property]['xml_list']['inline'];
$obj->arrayEntryname = $this->classes[$class]['properties'][$property]['xml_list']['entry_name'];
}
}
$obj->className = $className;
$obj->isCustomDefined = stripos($className, '\\') !== false;
return $obj;
}
else if(get_parent_class($class)){
//echo "Checking parent class in YAML - ".get_parent_class($class)." -".$class." - ".$property."\n";
return $this->getClass(get_parent_class($class), $property);
}
// else if ($property == "refId" || $property == "sessionToken" ){
// return 'string';
// }
// else if ($property == "messages" ){
//
// $className = 'net\authorize\api\contract\v1\MessagesType';
// $obj->className = $className;
// $obj->isCustomDefined = stripos($className, '\\') !== false;
//
// return $obj;
// }
else{
//echo "Error finding in YAML - ".$class." - ".$property."\n";
$obj = NULL;
return $obj;
}
// return $this->classes[$classname]['properties'][$property]['type'];
}
public function getXmlName($class){
if(isset($this->classes[$class]['xml_root_name'])){
return $this->classes[$class]['xml_root_name'];
}
}
}
//echo $classes['net\authorize\api\contract\v1\ANetApiRequestType']['properties']['merchantAuthentication']['type']."\n";
//$value = Yaml::parseFile('/*.yaml');
?>