Highway to PSR2
[openemr.git] / custom / import_xml.php
blobb73b3086751ead4a473476485b94c398e6672a1f
1 <?php
2 /**
3 * Imports patient demographics from our custom XML format.
5 * @package OpenEMR
6 * @link http://www.open-emr.org
7 * @author Rod Roark <rod@sunsetsystems.com>
8 * @author Roberto Vasquez <robertogagliotta@gmail.com>
9 * @copyright Copyright (c) 2005 Rod Roark <rod@sunsetsystems.com>
10 * @copyright Copyright (c) 2017 Roberto Vasquez <robertogagliotta@gmail.com>
11 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
14 include_once("../interface/globals.php");
15 include_once("$srcdir/patient.inc");
16 include_once("$srcdir/acl.inc");
18 use OpenEMR\Core\Header;
20 function setInsurance($pid, $ainsurance, $asubscriber, $seq)
22 $iwhich = $seq == '2' ? "secondary" : ($seq == '3' ? "tertiary" : "primary");
23 newInsuranceData(
24 $pid,
25 $iwhich,
26 $ainsurance["provider$seq"],
27 $ainsurance["policy$seq"],
28 $ainsurance["group$seq"],
29 $ainsurance["name$seq"],
30 $asubscriber["lname$seq"],
31 $asubscriber["mname$seq"],
32 $asubscriber["fname$seq"],
33 $asubscriber["relationship$seq"],
34 $asubscriber["ss$seq"],
35 fixDate($asubscriber["dob$seq"]),
36 $asubscriber["street$seq"],
37 $asubscriber["zip$seq"],
38 $asubscriber["city$seq"],
39 $asubscriber["state$seq"],
40 $asubscriber["country$seq"],
41 $asubscriber["phone$seq"],
42 $asubscriber["employer$seq"],
43 $asubscriber["employer_street$seq"],
44 $asubscriber["employer_city$seq"],
45 $asubscriber["employer_zip$seq"],
46 $asubscriber["employer_state$seq"],
47 $asubscriber["employer_country$seq"],
48 $ainsurance["copay$seq"],
49 $asubscriber["sex$seq"]
53 // Check authorization.
54 if (!acl_check('patients', 'demo', '', 'write')) {
55 die("Updating demographics is not authorized.");
58 if ($_POST['form_import']) {
59 $apatient = array();
60 $apcp = array();
61 $aemployer = array();
62 $ainsurance = array();
63 $asubscriber = array();
65 // $probearr is an array of tag names corresponding to the current
66 // container in the tree structure. $probeix is the current level.
67 $probearr = array('');
68 $probeix = 0;
70 $inspriority = '0'; // 1 = primary, 2 = secondary, 3 = tertiary
72 $parser = xml_parser_create();
73 xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);
74 $xml = array();
76 if (xml_parse_into_struct($parser, $_POST['form_import_data'], $xml)) {
77 foreach ($xml as $taginfo) {
78 $tag = strtolower($taginfo['tag']);
79 $tagtype = $taginfo['type'];
80 $tagval = addslashes($taginfo['value']);
82 if ($tagtype == 'open') {
83 ++$probeix;
84 $probearr[$probeix] = $tag;
85 continue;
88 if ($tagtype == 'close') {
89 --$probeix;
90 continue;
93 if ($tagtype != 'complete') {
94 die("Invalid tag type '$tagtype'");
97 if ($probeix == 1 && $probearr[$probeix] == 'patient') {
98 $apatient[$tag] = $tagval;
99 } else if ($probeix == 2 && $probearr[$probeix] == 'pcp') {
100 $apcp[$tag] = $tagval;
101 } else if ($probeix == 2 && $probearr[$probeix] == 'employer') {
102 $aemployer[$tag] = $tagval;
103 } else if ($probeix == 2 && $probearr[$probeix] == 'insurance') {
104 if ($tag == 'priority') {
105 $inspriority = $tagval;
106 } else {
107 $ainsurance["$tag$inspriority"] = $tagval;
109 } else if ($probeix == 3 && $probearr[$probeix] == 'subscriber') {
110 $asubscriber["$tag$inspriority"] = $tagval;
111 } else {
112 $alertmsg = "Invalid tag \"" . $probearr[$probeix] . "\" at level $probeix";
115 } else {
116 $alertmsg = "Invalid import data!";
119 xml_parser_free($parser);
121 $olddata = getPatientData($pid);
123 if ($olddata['squad'] && ! acl_check('squads', $olddata['squad'])) {
124 die("You are not authorized to access this squad.");
127 newPatientData(
128 $olddata['id'],
129 $apatient['title'],
130 $apatient['fname'],
131 $apatient['lname'],
132 $apatient['mname'],
133 $apatient['sex'],
134 $apatient['dob'],
135 $apatient['street'],
136 $apatient['zip'],
137 $apatient['city'],
138 $apatient['state'],
139 $apatient['country'],
140 $apatient['ss'],
141 $apatient['occupation'],
142 $apatient['phone_home'],
143 $apatient['phone_biz'],
144 $apatient['phone_contact'],
145 $apatient['status'],
146 $apatient['contact_relationship'],
147 $apatient['referrer'],
148 $apatient['referrerID'],
149 $apatient['email'],
150 $apatient['language'],
151 $apatient['ethnoracial'],
152 $apatient['interpreter'],
153 $apatient['migrantseasonal'],
154 $apatient['family_size'],
155 $apatient['monthly_income'],
156 $apatient['homeless'],
157 fixDate($apatient['financial_review']),
158 $apatient['pubpid'],
159 $pid,
160 $olddata['providerID'],
161 $apatient['genericname1'],
162 $apatient['genericval1'],
163 $apatient['genericname2'],
164 $apatient['genericval2'],
165 $apatient['billing_note'],
166 $apatient['phone_cell'],
167 $apatient['hipaa_mail'],
168 $apatient['hipaa_voice'],
169 $olddata['squad']
172 newEmployerData(
173 $pid,
174 $aemployer['name'],
175 $aemployer['street'],
176 $aemployer['zip'],
177 $aemployer['city'],
178 $aemployer['state'],
179 $aemployer['country']
182 setInsurance($pid, $ainsurance, $asubscriber, '1');
183 setInsurance($pid, $ainsurance, $asubscriber, '2');
184 setInsurance($pid, $ainsurance, $asubscriber, '3');
186 echo "<html>\n<body>\n<script language='JavaScript'>\n";
187 if ($alertmsg) {
188 echo " alert('$alertmsg');\n";
191 echo " if (!opener.closed && opener.refreshme) opener.refreshme();\n";
192 echo " window.close();\n";
193 echo "</script>\n</body>\n</html>\n";
194 exit();
197 <html>
198 <head>
199 <?php Header::setupHeader(); ?>
200 <title><?php echo xlt('Import Patient Demographics XML'); ?></title>
201 </head>
202 <body class="body_top" onload="javascript:document.forms[0].form_import_data.focus()">
203 <form method='post' action="import_xml.php" onsubmit="return top.restoreSession()">
204 <div class="container">
205 <div class="row">
206 <div class="col-xs-12">
207 <div class="form-group"></div>
208 <div class="form-group">
209 <textarea name='form_import_data' class='form-control' rows='10'></textarea>
210 </div>
211 <div class="form-group text-right">
212 <div class="btn-group" role="group">
213 <button type='submit' class='btn btn-default btn-save' name='form_import' value='bn_import'>
214 <?php echo xlt('Import'); ?>
215 </button>
216 <button type="button" class="btn btn-link btn-cancel" onclick="window.close()">
217 <?php echo xlt("Cancel"); ?>
218 </button>
219 </div>
220 </div>
221 </div>
222 </div>
223 </div>
224 </form>
225 </body>
226 </html>