-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapix_yllapito.php
executable file
·195 lines (157 loc) · 6.74 KB
/
apix_yllapito.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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?php
require "inc/parametrit.inc";
$status_message1 = "";
$status_message2 = "";
if ($tee != "") {
$yhtiorow["ytunnus"] = tulosta_ytunnus($yhtiorow["ytunnus"]);
$yhtiorow["www"] = str_replace(array("http://", "https://"), "", $yhtiorow["www"]);
}
if ($tee == "SendRegistrationInfo") {
$xmlfile = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>
<Request version=\"1.0\">
<Content>
<Group>
<Value type=\"Ytunnus\">{$yhtiorow["ytunnus"]}</Value>
<Value type=\"Name\">{$yhtiorow["nimi"]}</Value>
<Value type=\"FieldOfBusiness\"></Value>
<Value type=\"CompanyForm\"></Value>
<Value type=\"Email\">{$yhtiorow["email"]}</Value>
<Value type=\"Www\">{$yhtiorow["www"]}</Value>
<Value type=\"Phonenumber\">{$yhtiorow["puhelin"]}</Value>
<Value type=\"ContactPerson\"></Value>
<Value type=\"LanguageCoded\">fi</Value>
</Group>
<Group>
<Value type=\"AddressType\">Official</Value>
<Value type=\"Street1\">{$yhtiorow["osoite"]}</Value>
<Value type=\"PostalOffice\">{$yhtiorow["postitp"]}</Value>
<Value type=\"PostalCode\">{$yhtiorow["postino"]}</Value>
<Value type=\"Country\">{$yhtiorow["maa"]}</Value>
</Group>
<Group>
<Value type=\"AddressType\">Visiting</Value>
<Value type=\"Street1\">{$yhtiorow["osoite"]}</Value>
<Value type=\"PostalOffice\">{$yhtiorow["postitp"]}</Value>
<Value type=\"PostalCode\">{$yhtiorow["postino"]}</Value>
<Value type=\"Country\">{$yhtiorow["maa"]}</Value>
</Group>
<Group>
<Value type=\"AddressType\">Billing</Value>
<Value type=\"Street1\">{$yhtiorow["osoite"]}</Value>
<Value type=\"PostalOffice\">{$yhtiorow["postitp"]}</Value>
<Value type=\"PostalCode\">{$yhtiorow["postino"]}</Value>
<Value type=\"Country\">{$yhtiorow["maa"]}</Value>
</Group>
</Content>
</Request>";
$xmlfile = $xmlfile;
//$url = "https://test-api.apix.fi/registration";
$url = "https://api.apix.fi/registration";
$real_url = "$url?id=$yhtiorow[ytunnus]&idq=y-tunnus";
// Kirjoitetaan XML tempfailiin
$tempfile = tmpfile();
fwrite($tempfile, $xmlfile);
rewind($tempfile);
$ch = curl_init($real_url);
curl_setopt($ch, CURLOPT_PUT, true);
curl_setopt($ch, CURLOPT_INFILE, $tempfile);
// Tässä on "//NO_MB_OVERLOAD"-kommentti
// jotta UTF8-konversio ei osu tähän riviin
curl_setopt($ch, CURLOPT_INFILESIZE, strlen($xmlfile)); //NO_MB_OVERLOAD
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$response = curl_exec($ch);
curl_close($ch);
fclose($tempfile);
$xml = simplexml_load_string($response);
$status_message1 = "<br><br>";
if ($xml->Status == "OK") {
$status_message1 .= "<font class='ok'>Lähetys onnistui!</font>";
}
else {
$status_message1 .= "<font class='error'>Lähetys epäonnistui!<br><br>";
foreach ($xml->FreeText as $teksti) {
$status_message1 .= $teksti."<br>";
}
$status_message1 .= "</font>";
}
}
if ($tee == "RetrieveTransferID") {
//$url = "https://test-api.apix.fi/app-transferID";
$url = "https://api.apix.fi/app-transferID";
$timestamp = gmdate("YmdHis");
$pw_digest = mb_substr(hash('sha256', trim($password)), 0, 64);
$digest_src = $yhtiorow["ytunnus"]."+y-tunnus+".trim($username)."+".$timestamp."+".$pw_digest;
$dt = mb_substr(hash("sha256", $digest_src), 0, 64);
$real_url = "$url?id=$yhtiorow[ytunnus]&idq=y-tunnus&uid=$username&ts=$timestamp&d=SHA-256:$dt";
$ch = curl_init($real_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$response = curl_exec($ch);
curl_close($ch);
$xml = simplexml_load_string($response);
$status_message2 = "<br><br>";
if ($xml->Status == "OK") {
$transfer_id = "";
$transfer_key = "";
foreach ($xml->Content->Group->Value as $value) {
if ($value->attributes()->type == "TransferKey") {
$transfer_key = $value;
}
if ($value->attributes()->type == "TransferID") {
$transfer_id = $value;
}
}
if ($transfer_id != "" and $transfer_key != "") {
$status_message2 .= "<font class='ok'>Päivitys onnistui, APIX laskutus käyttöönotettu!</font>";
$query = "UPDATE yhtion_parametrit SET
apix_tunnus = '$transfer_id',
apix_avain = '$transfer_key',
verkkolasku_lah = 'apix',
finvoice_senderpartyid = '$yhtiorow[ovttunnus]',
finvoice_senderintermediator = '003723327487'
WHERE yhtio = '$kukarow[yhtio]'";
$query = pupe_query($query);
}
else {
$status_message2 .= "<font class='error'>Päivitys epäonnistui!<br><br>";
$status_message2 .= "<font class='error'>Asiakastiedot olivat tyhjää!<br>";
}
}
else {
$status_message2 .= "<font class='error'>Päivitys epäonnistui!<br><br>";
foreach ($xml->FreeText as $teksti) {
$status_message2 .= $teksti."<br>";
}
$status_message2 .= "</font>";
}
}
echo "<font class='head'>".t("APIX Laskutuksen käyttöönotto")."</font><hr>";
echo "<br>";
echo "<img src='{$palvelin2}pics/apix_logo.png'>";
echo "<br><br>";
echo "<font class='message'>Vaihe 1: Lähetä yhtiötiedot APIX:lle</font><hr>";
echo "<form method = 'post' class='multisubmit'>";
echo "<input type='hidden' name='tee' value='SendRegistrationInfo'>";
echo "<input type='submit' value='Lähetä yhtiötiedot klikkaamalla tästä'>";
echo "</form>";
echo $status_message1;
echo "<br><br>";
echo "<font class='message'>Vaihe 2: Rekisteröidy APIX asiakkaaksi ja hanki verkkopostimerkkejä heidän verkkokaupasta</font><hr>";
// echo "<form target='top' action='https://test-registration.apix.fi' method='get'>";
echo "<form target='top' action='https://registration.apix.fi' method='get'>";
echo "<input type='submit' value='Siirry APIX rekisteröintiin klikkaamalla tästä'>";
echo "</form>";
echo "<br><br>";
echo "<font class='message'>Vaihe 3: Ota APIX laskutus käyttöön Pupesoft:issa antamalla APIX käyttäjätietosi</font><hr>";
echo "<form method = 'post' class='multisubmit'>";
echo "<input type='hidden' name='tee' value='RetrieveTransferID'>";
echo "<table>";
echo "<tr><th>Käyttäjätunnus</th><td><input type='text' size='20' name='username' value='$username'></td></tr>";
echo "<tr><th>Salasana</th><td><input type='password' size='20' name='password' value='$password'></td></tr>";
echo "</table>";
echo "<br>";
echo "<input type='submit' value='Ota APIX laskutus käyttöön klikkaamalla tästä'>";
echo $status_message2;
echo "</form>";
require "inc/footer.inc";