Browse Source

donate stats fix v5

master
gsd 1 year ago
parent
commit
2b6f71eebf
  1. 5
      src/main/java/app/entities/db/DonateStat.java

5
src/main/java/app/entities/db/DonateStat.java

@ -38,25 +38,21 @@ public class DonateStat {
//потом бля //потом бля
} }
@JsonValue
public Integer getRubles() { public Integer getRubles() {
if (this.giveMethod == VipGiveMethod.QIWI) return Integer.valueOf(this.reserved.split(";")[0].split("=")[1]); if (this.giveMethod == VipGiveMethod.QIWI) return Integer.valueOf(this.reserved.split(";")[0].split("=")[1]);
return 0; return 0;
} }
@JsonValue
public Integer getTF2Keys() { public Integer getTF2Keys() {
if (this.giveMethod == VipGiveMethod.STEAM) return Integer.valueOf(this.reserved.split(";")[0].split("=")[1]); if (this.giveMethod == VipGiveMethod.STEAM) return Integer.valueOf(this.reserved.split(";")[0].split("=")[1]);
return 0; return 0;
} }
@JsonValue
public Integer getTF2Refs() { public Integer getTF2Refs() {
if (this.giveMethod == VipGiveMethod.STEAM) return Integer.valueOf(this.reserved.split(";")[1].split("=")[1]); if (this.giveMethod == VipGiveMethod.STEAM) return Integer.valueOf(this.reserved.split(";")[1].split("=")[1]);
return 0; return 0;
} }
@JsonValue
public String getStatus() { public String getStatus() {
switch (this.giveMethod) { switch (this.giveMethod) {
case FREE -> { case FREE -> {
@ -80,7 +76,6 @@ public class DonateStat {
return "Неизвестно"; return "Неизвестно";
} }
@JsonValue
public String getBeExtended() { public String getBeExtended() {
return extended?"Была продлена":""; return extended?"Была продлена":"";
} }

Loading…
Cancel
Save