1001Reisetipps
Angebote
// Get the iframe element by its ID
var iframe = document.getElementById(„vs-uraniaiFrame“);
// Function to parse URL Parameters and set iframe src
function parseHotelIDFromURLAndSetIframeSrc() {
// Get the URL parameters
var urlParams = new URLSearchParams(window.location.search);
// Check if the „hotelID“ parameter is present in the URL
if (urlParams.has(„hotelID“)) {
// Get the UUID from the URL
var hotelid = urlParams.get(„hotelID“);
// Check if the iframe element exists
if (iframe) {
var today = new Date();
var startDate = new Date(today);
var endDate = new Date(today);
// Calculate start_date (30 days from today)
startDate.setDate(today.getDate() + 30);
// Calculate end_date (37 days from today)
endDate.setDate(today.getDate() + 37);
// Format dates as yyyy-MM-dd
var startDateFormatted = startDate.toISOString().slice(0, 10);
var endDateFormatted = endDate.toISOString().slice(0, 10);
// Define the base URL
var baseURL =
„https://schmetterling-urania.com/neutral/main/#/offers?start_date=“ +
startDateFormatted +
„&end_date=“ +
endDateFormatted +
„&type=NH&cfg=0144280000000000&lang=de&ref=143012“;
// Map HotelIDs to their respective tags
var hotelidToTags = {
„malahini-kuda-bandos-resort“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-423988:GT01-423988“,
„sheraton-maldives-full-moon-resort-spa“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-13023:GT01-13023“,
„thulhagiri-island-resort-spa“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-23124:GT01-23124“,
„the-barefoot-eco-hotel“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-407124:GT01-407124“,
„kandima-maldives“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-535289:GT01-535289“,
„hotel-riu-palace-maldives“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-803718:GT01-803718“,
„sandies-bathala-maldives“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-8590:GT01-8590“,
„adaaran-club-rannalhi“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-19923:GT01-19923“,
„kuredu-resort-spa“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-15580:GT01-15580“,
„bandos-maldives“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-1767:GT01-1767“,
„kurumba-maldives“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-14817:GT01-14817“,
„banyan-tree-vabbinfaru“:
„DUR-2:DUR-3:DUR-4:DUR-5:DUR-6:DUR-7:DUR-8,BT01-8538:GT01-8538“,
};
// Check if the text is in the mapping
if (hotelid in hotelidToTags) {
var tags = hotelidToTags[hotelid];
var src = `${baseURL}&tags=${tags}`;
// Set the src attribute of the iframe with the text
iframe.src = src;
// Refresh the iframe by setting the iframe’s location to the new URL
iframe.contentWindow.location = src;
} else {
console.error(„Text not found in the mapping.“);
iframe.src =
„https://schmetterling-urania.com/neutral/main/#/offers?type=NH&cfg=0144280000000000&lang=de&ref=143012&tags=GT03-GOLF“;
}
} else {
console.error(
‚Iframe element with ID „vs-uraniaiFrame“ not found.‘
);
iframe.src =
„https://schmetterling-urania.com/neutral/main/#/offers?type=NH&cfg=0144280000000000&lang=de&ref=143012&tags=GT03-GOLF“;
}
}
}
// Call the function when the page loads
parseHotelIDFromURLAndSetIframeSrc();