s
This commit is contained in:
@@ -1,5 +1,16 @@
|
|||||||
{
|
{
|
||||||
"elements":[
|
"elements":[
|
||||||
|
{
|
||||||
|
"type": "SelectVariable",
|
||||||
|
"name": "Reservate",
|
||||||
|
"caption": "Betrag reservieren",
|
||||||
|
"test": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "SelectVariable",
|
||||||
|
"name": "GetAmount",
|
||||||
|
"caption": "Betrag Abziehen",
|
||||||
|
"test": true
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -7,18 +7,16 @@ class Belevo_Bezahl_Modul extends IPSModule
|
|||||||
{
|
{
|
||||||
// Die Standard-Create() Methode aufrufen
|
// Die Standard-Create() Methode aufrufen
|
||||||
parent::Create();
|
parent::Create();
|
||||||
$this->RegisterVariableBoolean("Reservate", "Reservate", '', false);
|
$this->RegisterPropertyInteger("Reservate", 0);
|
||||||
|
$this->RegisterPropertyInteger("GetAmount", 0);
|
||||||
$this->RegisterVariableInteger("ReservationAmount", "ReservationAmount", '', 0);
|
$this->RegisterVariableInteger("ReservationAmount", "ReservationAmount", '', 0);
|
||||||
$this->RegisterVariableBoolean("AmountIsReserved", "AmountIsReserved", '', false);
|
$this->RegisterVariableBoolean("AmountIsReserved", "AmountIsReserved", '', false);
|
||||||
$this->RegisterVariableBoolean("Get", "Get", '', false);
|
|
||||||
$this->RegisterVariableInteger("GetAmount", "GetAmount", '', 0);
|
|
||||||
|
|
||||||
// Event-Handler registrieren
|
// Event-Handler registrieren
|
||||||
$this->RegisterMessage($this->GetIDForIdent("Reservate"), VM_UPDATE);
|
$this->RegisterMessage($this->ReadPropertyInteger("Reservate"), VM_UPDATE);
|
||||||
$this->RegisterMessage($this->GetIDForIdent("Get"), VM_UPDATE);
|
$this->RegisterMessage($this->ReadPropertyInteger("GetAmount"), VM_UPDATE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function ApplyChanges()
|
public function ApplyChanges()
|
||||||
{
|
{
|
||||||
parent::ApplyChanges();
|
parent::ApplyChanges();
|
||||||
@@ -26,15 +24,17 @@ class Belevo_Bezahl_Modul extends IPSModule
|
|||||||
|
|
||||||
public function MessageSink($TimeStamp, $SenderID, $Message, $Data)
|
public function MessageSink($TimeStamp, $SenderID, $Message, $Data)
|
||||||
{
|
{
|
||||||
|
IPS_LogMessage("Belevo_Bezahl_Modul", "MessageSink: SenderID=$SenderID, Message=$Message");
|
||||||
|
|
||||||
switch ($SenderID) {
|
switch ($SenderID) {
|
||||||
case $this->GetIDForIdent("Reservate"):
|
case $this->ReadPropertyInteger("Reservate"):
|
||||||
if (GetValueBoolean($this->GetIDForIdent("Reservate"))) {
|
if (GetValueBoolean($this->ReadPropertyInteger("Reservate"))) {
|
||||||
$this->ReservateAmount(GetValueInteger($this->GetIDForIdent("ReservationAmount")));
|
$this->ReservateAmount(GetValueInteger($this->GetIDForIdent("ReservationAmount")));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case $this->GetIDForIdent("Get"):
|
case $this->ReadPropertyInteger("GetAmount"):
|
||||||
if (GetValueBoolean($this->GetIDForIdent("Get"))) {
|
if (GetValueBoolean($this->ReadPropertyInteger("GetAmount"))) {
|
||||||
$this->GetAmount(GetValueInteger($this->GetIDForIdent("GetAmount")));
|
$this->GetAmount(GetValueInteger($this->ReadPropertyInteger("GetAmount")));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -42,56 +42,55 @@ class Belevo_Bezahl_Modul extends IPSModule
|
|||||||
|
|
||||||
public function ReservateAmount($amount)
|
public function ReservateAmount($amount)
|
||||||
{
|
{
|
||||||
// Beispiel-Logik zur Reservierung des Betrags bei Wallee
|
IPS_LogMessage("Belevo_Bezahl_Modul", "ReservateAmount: amount=$amount");
|
||||||
$apiUrl = "https://api.wallee.com/transaction/create";
|
|
||||||
$apiKey = "DEIN_API_KEY"; // Ersetze dies durch deinen tatsächlichen API-Schlüssel
|
|
||||||
|
|
||||||
$data = [
|
// Beispiel-Logik zur Reservierung des Betrags bei Stripe
|
||||||
"amount" => $amount,
|
$apiKey = "pk_test_51Qkr79LJAcsNrpivA90lt7ULEzyXKR8l0pAqTBgfeuAIWlsLS4A3BdIBITc9UooFANbImvlJQ2F2jOZ0X5j8GI7Q00hNNasvQm"; // Ersetze dies durch deinen tatsächlichen API-Schlüssel
|
||||||
"currency" => "CHF", // Ersetze dies durch die gewünschte Währung
|
|
||||||
"paymentMethod" => "creditcard" // Beispiel: Kreditkarte
|
|
||||||
];
|
|
||||||
|
|
||||||
$options = [
|
// Öffnen eines Fensters zur Eingabe der Zahlungsinformationen
|
||||||
'http' => [
|
$html = '<script>
|
||||||
'header' => "Content-type: application/json\r\nAuthorization: Bearer $apiKey\r\n",
|
var windowObjectReference;
|
||||||
'method' => 'POST',
|
var strWindowFeatures = "menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes";
|
||||||
'content' => json_encode($data),
|
|
||||||
],
|
|
||||||
];
|
|
||||||
|
|
||||||
$context = stream_context_create($options);
|
function openRequestedPopup() {
|
||||||
$result = file_get_contents($apiUrl, false, $context);
|
windowObjectReference = window.open("https://checkout.stripe.com/pay", "Stripe_Window", strWindowFeatures);
|
||||||
|
}
|
||||||
|
|
||||||
if ($result === FALSE) {
|
openRequestedPopup();
|
||||||
echo "Reservierung fehlgeschlagen.";
|
</script>';
|
||||||
|
|
||||||
|
SetValue(23828, $html); // Baut das HTML auf
|
||||||
|
|
||||||
|
// Simulierte erfolgreiche Reservierung
|
||||||
|
$reservationSuccessful = true;
|
||||||
|
|
||||||
|
if ($reservationSuccessful) {
|
||||||
|
SetValueBoolean($this->GetIDForIdent("AmountIsReserved"), true);
|
||||||
|
IPS_LogMessage("Belevo_Bezahl_Modul", "Reservierung erfolgreich.");
|
||||||
} else {
|
} else {
|
||||||
$response = json_decode($result, true);
|
IPS_LogMessage("Belevo_Bezahl_Modul", "Reservierung fehlgeschlagen.");
|
||||||
if ($response['success']) {
|
|
||||||
SetValueBoolean($this->GetIDForIdent("AmountIsReserved"), true);
|
|
||||||
} else {
|
|
||||||
echo "Reservierung fehlgeschlagen: " . $response['message'];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function GetAmount($amount)
|
public function GetAmount($amount)
|
||||||
{
|
{
|
||||||
// Beispiel-Logik zum Abziehen des Betrags bei Wallee
|
IPS_LogMessage("Belevo_Bezahl_Modul", "GetAmount: amount=$amount");
|
||||||
$apiUrl = "https://api.wallee.com/transaction/charge";
|
|
||||||
$apiKey = "DEIN_API_KEY"; // Ersetze dies durch deinen tatsächlichen API-Schlüssel
|
// Beispiel-Logik zum Abziehen des Betrags bei Stripe
|
||||||
|
$apiUrl = "https://api.stripe.com/v1/charges";
|
||||||
|
$apiKey = "pk_test_51Qkr79LJAcsNrpivA90lt7ULEzyXKR8l0pAqTBgfeuAIWlsLS4A3BdIBITc9UooFANbImvlJQ2F2jOZ0X5j8GI7Q00hNNasvQm"; // Ersetze dies durch deinen tatsächlichen API-Schlüssel
|
||||||
|
|
||||||
$data = [
|
$data = [
|
||||||
"amount" => $amount,
|
"amount" => $amount * 100, // Betrag in Cent
|
||||||
"currency" => "CHF", // Ersetze dies durch die gewünschte Währung
|
"currency" => "CHF", // Ersetze dies durch die gewünschte Währung
|
||||||
"paymentMethod" => "creditcard" // Beispiel: Kreditkarte
|
"source" => "tok_visa" // Beispiel: Test-Token von Stripe
|
||||||
];
|
];
|
||||||
|
|
||||||
$options = [
|
$options = [
|
||||||
'http' => [
|
'http' => [
|
||||||
'header' => "Content-type: application/json\r\nAuthorization: Bearer $apiKey\r\n",
|
'header' => "Content-type: application/x-www-form-urlencoded\r\nAuthorization: Bearer $apiKey\r\n",
|
||||||
'method' => 'POST',
|
'method' => 'POST',
|
||||||
'content' => json_encode($data),
|
'content' => http_build_query($data),
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -99,15 +98,16 @@ class Belevo_Bezahl_Modul extends IPSModule
|
|||||||
$result = file_get_contents($apiUrl, false, $context);
|
$result = file_get_contents($apiUrl, false, $context);
|
||||||
|
|
||||||
if ($result === FALSE) {
|
if ($result === FALSE) {
|
||||||
echo "Abzug fehlgeschlagen.";
|
IPS_LogMessage("Belevo_Bezahl_Modul", "Abzug fehlgeschlagen.");
|
||||||
} else {
|
} else {
|
||||||
$response = json_decode($result, true);
|
$response = json_decode($result, true);
|
||||||
if ($response['success']) {
|
if (isset($response['id'])) {
|
||||||
SetValueBoolean($this->GetIDForIdent("Reservate"), false);
|
SetValueBoolean($this->ReadPropertyInteger("Reservate"), false);
|
||||||
SetValueBoolean($this->GetIDForIdent("AmountIsReserved"), false);
|
SetValueBoolean($this->GetIDForIdent("AmountIsReserved"), false);
|
||||||
SetValueBoolean($this->GetIDForIdent("Get"), false);
|
SetValueBoolean($this->ReadPropertyInteger("GetAmount"), false);
|
||||||
|
IPS_LogMessage("Belevo_Bezahl_Modul", "Abzug erfolgreich.");
|
||||||
} else {
|
} else {
|
||||||
echo "Abzug fehlgeschlagen: " . $response['message'];
|
IPS_LogMessage("Belevo_Bezahl_Modul", "Abzug fehlgeschlagen: " . $response['error']['message']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@
|
|||||||
"compatibility": {
|
"compatibility": {
|
||||||
"version": "7.1"
|
"version": "7.1"
|
||||||
},
|
},
|
||||||
"version": "1.002",
|
"version": "1.003",
|
||||||
|
|
||||||
"build": 0,
|
"build": 0,
|
||||||
"date": 0
|
"date": 0
|
||||||
|
|||||||
Reference in New Issue
Block a user