mirror of
https://github.com/ThisIsBenny/iOS-Widgets.git
synced 2025-06-07 05:57:41 +00:00
Update VodafoneDE.js
v2.3.0: - added Support for flat tariff like "GigaMobil M mit unbegrenzten GB", "GigaMobil XL mit unbegrenzten GB" or other flat tariffs
This commit is contained in:
parent
59fe28e46e
commit
d982b0c970
1 changed files with 592 additions and 608 deletions
|
@ -7,7 +7,7 @@ Version 2.3.0
|
||||||
|
|
||||||
Changelog:
|
Changelog:
|
||||||
v2.3.0:
|
v2.3.0:
|
||||||
- Support for lockscreen widgets added
|
- added Support for flat tariff like "GigaMobil M mit unbegrenzten GB", "GigaMobil XL mit unbegrenzten GB" or other flat tariffs
|
||||||
v2.2.2:
|
v2.2.2:
|
||||||
- fix const variable issue
|
- fix const variable issue
|
||||||
v2.2.1:
|
v2.2.1:
|
||||||
|
@ -104,11 +104,9 @@ let widgetInput = null;
|
||||||
let user, pass, number, json, cacheUUID
|
let user, pass, number, json, cacheUUID
|
||||||
if (widgetInputRAW !== null) {
|
if (widgetInputRAW !== null) {
|
||||||
const parameter = widgetInputRAW.toString().split("|")
|
const parameter = widgetInputRAW.toString().split("|")
|
||||||
|
|
||||||
if (parameter.length > 1) {
|
if (parameter.length > 1) {
|
||||||
[user, pass, number, json] = parameter;
|
[user, pass, number, json] = parameter;
|
||||||
|
|
||||||
|
|
||||||
if (!user || !pass || !number) {
|
if (!user || !pass || !number) {
|
||||||
throw new Error("Invalid Widget parameter. Expected format: username|password|phonenumber")
|
throw new Error("Invalid Widget parameter. Expected format: username|password|phonenumber")
|
||||||
}
|
}
|
||||||
|
@ -146,7 +144,7 @@ if (widgetInputRAW !== null) {
|
||||||
// Text sizes
|
// Text sizes
|
||||||
const fontSizeData = 11
|
const fontSizeData = 11
|
||||||
const lineNumberData = 1
|
const lineNumberData = 1
|
||||||
const minimumScaleFactor = 0.8 // Value between 1.0 and 0.1
|
const minimumScaleFactor = 0.8 //value between 1.0 and 0.1
|
||||||
|
|
||||||
// Number of data by Size
|
// Number of data by Size
|
||||||
const numberOfDisplayedDataBySize = {
|
const numberOfDisplayedDataBySize = {
|
||||||
|
@ -252,7 +250,7 @@ async function setupAssistant () {
|
||||||
let res, data
|
let res, data
|
||||||
try {
|
try {
|
||||||
res = await req.loadJSON()
|
res = await req.loadJSON()
|
||||||
if(!res['serviceUsageVBO'] || !res['serviceUsageVBO']['usageAccounts'] || !res['serviceUsageVBO']['usageAccounts'][0] || !res['serviceUsageVBO']['usageAccounts'][0]['usageGroup']) {
|
if (!res['serviceUsageVBO'] || !res['serviceUsageVBO']['usageAccounts'] || !res['serviceUsageVBO']['usageAccounts'][0] || !res['serviceUsageVBO']['usageAccounts'][0]['usageGroup']) {
|
||||||
throw new Error('invalid response: ' + JSON.stringify(res))
|
throw new Error('invalid response: ' + JSON.stringify(res))
|
||||||
}
|
}
|
||||||
data = res['serviceUsageVBO']['usageAccounts'][0]['usageGroup']
|
data = res['serviceUsageVBO']['usageAccounts'][0]['usageGroup']
|
||||||
|
@ -374,7 +372,7 @@ function creatProgress(total, havegone) {
|
||||||
return context.getImage()
|
return context.getImage()
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDiagram(percentage) {
|
function getDiagram(percentage, isFlat) {
|
||||||
function drawArc(ctr, rad, w, deg) {
|
function drawArc(ctr, rad, w, deg) {
|
||||||
bgx = ctr.x - rad
|
bgx = ctr.x - rad
|
||||||
bgy = ctr.y - rad
|
bgy = ctr.y - rad
|
||||||
|
@ -426,9 +424,15 @@ function getDiagram(percentage) {
|
||||||
)
|
)
|
||||||
canvas.setTextAlignedCenter()
|
canvas.setTextAlignedCenter()
|
||||||
canvas.setTextColor(textColor)
|
canvas.setTextColor(textColor)
|
||||||
canvas.setFont(Font.boldSystemFont(canvTextSize))
|
canvas.setFont(Font.boldSystemFont(108))
|
||||||
canvas.drawTextInRect(`${percentage}%`, canvTextRect)
|
if (isFlat === true) {
|
||||||
|
const infinitySize = canvSize / 2;
|
||||||
|
canvas.setFont(Font.boldSystemFont(infinitySize));
|
||||||
|
const textRect = new Rect(0, infinitySize / 3, canvSize, canvSize);
|
||||||
|
canvas.drawTextInRect(`∞`, textRect);
|
||||||
|
} else {
|
||||||
|
canvas.drawTextInRect(`${percentage}%`, canvTextRect);
|
||||||
|
}
|
||||||
return canvas.getImage()
|
return canvas.getImage()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -448,20 +452,6 @@ function getTimeRemaining(endtime) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getTotalValues(v) {
|
|
||||||
let totalValues;
|
|
||||||
if (v.unitOfMeasure !== 'MB') {
|
|
||||||
totalValues = `${(showRemainingContingent ? v.remaining : v.used)} ${descriptionMapping[v.unitOfMeasure] !== undefined ? descriptionMapping[v.unitOfMeasure] : v.unitOfMeasure} von ${v.total} ${descriptionMapping[v.unitOfMeasure] !== undefined ? descriptionMapping[v.unitOfMeasure] : v.unitOfMeasure}`
|
|
||||||
} else if (parseInt(v.total) < 1000) {
|
|
||||||
totalValues = `${(showRemainingContingent ? v.remaining : v.used)} MB von ${v.total} MB`
|
|
||||||
} else {
|
|
||||||
let GB = ((showRemainingContingent ? v.remaining : v.used) / 1024).toFixed(2)
|
|
||||||
let totalGB = (v.total / 1024).toFixed(2)
|
|
||||||
totalValues = `${GB} GB von ${totalGB} GB`
|
|
||||||
}
|
|
||||||
return totalValues
|
|
||||||
}
|
|
||||||
|
|
||||||
async function getSessionCookiesViaNetworkLogin() {
|
async function getSessionCookiesViaNetworkLogin() {
|
||||||
let req;
|
let req;
|
||||||
req = new Request("https://www.vodafone.de/mint/rest/session/start")
|
req = new Request("https://www.vodafone.de/mint/rest/session/start")
|
||||||
|
@ -536,11 +526,11 @@ async function getUsage(user, pass, number) {
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
let res = await req.loadJSON()
|
let res = await req.loadJSON()
|
||||||
if(!res['serviceUsageVBO'] || !res['serviceUsageVBO']['usageAccounts'] || !res['serviceUsageVBO']['usageAccounts'][0]) {
|
if (!res['serviceUsageVBO'] || !res['serviceUsageVBO']['usageAccounts'] || !res['serviceUsageVBO']['usageAccounts'][0]) {
|
||||||
if (debug) {
|
if (debug) {
|
||||||
console.log(JSON.stringify(res, null, 2))
|
console.log(JSON.stringify(res, null, 2))
|
||||||
}
|
}
|
||||||
throw new Error("Invalid Response")
|
|
||||||
}
|
}
|
||||||
console.log("unbilled-usage loaded")
|
console.log("unbilled-usage loaded")
|
||||||
if (debug) {
|
if (debug) {
|
||||||
|
@ -655,38 +645,15 @@ try {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const lockscreenWidget = config.widgetFamily.includes('accessory')
|
|
||||||
|
|
||||||
// Create Widget
|
// Create Widget
|
||||||
let widget = new ListWidget();
|
let widget = new ListWidget();
|
||||||
|
|
||||||
if(!lockscreenWidget) {
|
|
||||||
widget.setPadding(10, 10, 10, 10)
|
widget.setPadding(10, 10, 10, 10)
|
||||||
}
|
|
||||||
|
|
||||||
if (data !== undefined) {
|
if (data !== undefined) {
|
||||||
if (debug) {
|
if (debug) {
|
||||||
console.log(JSON.stringify(data, null, 2))
|
console.log(JSON.stringify(data, null, 2))
|
||||||
}
|
}
|
||||||
if(lockscreenWidget) {
|
|
||||||
let stack = widget.addStack()
|
|
||||||
stack.layoutHorizontally()
|
|
||||||
let v = data.usage[0]
|
|
||||||
if(config.widgetFamily !== "accessoryInline") {
|
|
||||||
const percentage = (100 / v.total * (showRemainingContingent ? v.remaining : v.used)).toFixed(0);
|
|
||||||
stack.addImage(getDiagram(percentage));
|
|
||||||
}
|
|
||||||
if(config.widgetFamily === "accessoryRectangular"){
|
|
||||||
stack.addSpacer(5)
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if(config.widgetFamily !== "accessoryCircular"){
|
|
||||||
const totalValues = getTotalValues(v)
|
|
||||||
stack.centerAlignContent()
|
|
||||||
stack.addText(totalValues)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
const gradient = new LinearGradient()
|
const gradient = new LinearGradient()
|
||||||
gradient.locations = [0, 1]
|
gradient.locations = [0, 1]
|
||||||
gradient.colors = [
|
gradient.colors = [
|
||||||
|
@ -732,17 +699,37 @@ stack.addImage(getDiagram(percentage));
|
||||||
column = row.addStack()
|
column = row.addStack()
|
||||||
column.layoutVertically()
|
column.layoutVertically()
|
||||||
column.centerAlignContent()
|
column.centerAlignContent()
|
||||||
|
const percentage = v.total > 100000000 ? 100 : (100 / v.total * (showRemainingContingent ? v.remaining : v.used)).toFixed(0);
|
||||||
const percentage = (100 / v.total * (showRemainingContingent ? v.remaining : v.used)).toFixed(0);
|
const isFlat = v.total >= 100000000
|
||||||
const imageStack = column.addStack()
|
const imageStack = column.addStack()
|
||||||
imageStack.layoutHorizontally()
|
imageStack.layoutHorizontally()
|
||||||
imageStack.addSpacer()
|
imageStack.addSpacer()
|
||||||
imageStack.addImage(getDiagram(percentage));
|
imageStack.addImage(getDiagram(percentage, isFlat));
|
||||||
imageStack.addSpacer()
|
imageStack.addSpacer()
|
||||||
column.addSpacer(2)
|
column.addSpacer(2)
|
||||||
|
|
||||||
// Total Values
|
// Total Values
|
||||||
let totalValues = getTotalValues(v)
|
let totalValues;
|
||||||
|
if (v.unitOfMeasure !== 'MB') {
|
||||||
|
totalValues = `${(showRemainingContingent ? v.remaining : v.used)} ${descriptionMapping[v.unitOfMeasure] !== undefined ? descriptionMapping[v.unitOfMeasure] : v.unitOfMeasure} von ${v.total} ${descriptionMapping[v.unitOfMeasure] !== undefined ? descriptionMapping[v.unitOfMeasure] : v.unitOfMeasure}`
|
||||||
|
} else if (parseInt(v.total) < 1000) {
|
||||||
|
totalValues = `${(showRemainingContingent ? v.remaining : v.used)} MB von ${v.total} MB`
|
||||||
|
} else if (parseInt(v.total) >= 100000000) {
|
||||||
|
if (showRemainingContingent === true) {
|
||||||
|
totalValues = `Flat`
|
||||||
|
} else {
|
||||||
|
if (v.used <= 1024) {
|
||||||
|
totalValues = `${v.used} MB verbraucht.`
|
||||||
|
} else {
|
||||||
|
let usedGB = (v.used / 1024).toFixed(2)
|
||||||
|
totalValues = `${usedGB} GB verbraucht.`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
let GB = ((showRemainingContingent ? v.remaining : v.used) / 1024).toFixed(2)
|
||||||
|
let totalGB = (v.total / 1024).toFixed(2)
|
||||||
|
totalValues = `${GB} GB von ${totalGB} GB`
|
||||||
|
}
|
||||||
textStack = column.addStack()
|
textStack = column.addStack()
|
||||||
textStack.layoutHorizontally()
|
textStack.layoutHorizontally()
|
||||||
textStack.addSpacer()
|
textStack.addSpacer()
|
||||||
|
@ -792,7 +779,7 @@ stack.addImage(getDiagram(percentage));
|
||||||
remainingDaysText.centerAlignText()
|
remainingDaysText.centerAlignText()
|
||||||
remainingDaysText.textColor = textColor
|
remainingDaysText.textColor = textColor
|
||||||
}
|
}
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
let fallbackText = widget.addText("Es ist ein Fehler aufgetreten! Bitte prüfen Sie die Logs direkt in der App.")
|
let fallbackText = widget.addText("Es ist ein Fehler aufgetreten! Bitte prüfen Sie die Logs direkt in der App.")
|
||||||
fallbackText.font = Font.mediumSystemFont(12)
|
fallbackText.font = Font.mediumSystemFont(12)
|
||||||
|
@ -804,9 +791,6 @@ if (!config.runsInWidget) {
|
||||||
case 'small': await widget.presentSmall(); break;
|
case 'small': await widget.presentSmall(); break;
|
||||||
case 'medium': await widget.presentMedium(); break;
|
case 'medium': await widget.presentMedium(); break;
|
||||||
case 'large': await widget.presentLarge(); break;
|
case 'large': await widget.presentLarge(); break;
|
||||||
case 'accessoryRectangular': await widget.presentAccessoryRectangular(); break;
|
|
||||||
case 'accessoryCircular': await widget.presentAccessoryCircular(); break;
|
|
||||||
case 'accessoryInline': await widget.presentAccessoryInline(); break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue