jafea7-ctbrec-v5.3.2-based/client/src/main/java/ctbrec/ui/sites/stripchat/AbstractStripchatUpdateServ...

70 lines
2.3 KiB
Java

package ctbrec.ui.sites.stripchat;
import ctbrec.StringUtil;
import ctbrec.ui.tabs.PaginatedScheduledService;
import org.json.JSONObject;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public abstract class AbstractStripchatUpdateService extends PaginatedScheduledService {
private static final Random RNG = new Random();
protected String getPreviewUrl(JSONObject model) {
try {
long id = model.getLong("id");
long timestamp = model.getLong("snapshotTimestamp");
String snapshotServer = model.getString("snapshotServer");
if (timestamp == 0 || StringUtil.isBlank(snapshotServer)) {
throw new IllegalStateException("Model seems to be offline");
}
return MessageFormat.format("https://img.strpst.com/thumbs/{0}/{1}_jpg", String.valueOf(timestamp), String.valueOf(id));
} catch (Exception e) {
return model.optString("previewUrlThumbBig");
}
}
protected List<String> createTags(JSONObject model) {
List<String> tags = new ArrayList<>();
if (model.optBoolean("isHd")) {
tags.add("HD");
}
if (model.optBoolean("isVr")) {
tags.add("VR");
}
if (model.optBoolean("isLovense")) {
tags.add("lovense");
}
if (model.optBoolean("isNew")) {
tags.add("new");
}
if (model.optBoolean("isMobile")) {
tags.add("mobile");
}
if (model.optBoolean("isNonNude")) {
tags.add("non-nude");
}
if (StringUtil.isNotBlank(model.optString("country"))) {
tags.add(model.getString("country").toUpperCase());
}
if (StringUtil.isNotBlank(model.optString("broadcastGender"))) {
tags.add(model.getString("broadcastGender"));
}
if (StringUtil.isNotBlank(model.optString("status"))) {
tags.add(model.getString("status"));
}
return tags;
}
protected String getUniq() {
String dict = "0123456789abcdefghijklmnopqarstvwxyz";
char[] text = new char[16];
for (int i = 0; i < 16; i++) {
text[i] = dict.charAt(RNG.nextInt(dict.length()));
}
return new String(text);
}
}