zwhui 1 year ago
parent
commit
e34bc92cd6

+ 12 - 4
midjourney/src/main/java/com/yhlxj/service/midjourney/impl/MidjourneyServiceImpl.java

@@ -1469,10 +1469,7 @@ public class MidjourneyServiceImpl implements MidjourneyService {
         return list;
     }
 
-    public static void main(String[] args) {
-        System.out.println(new JSONArray().join("123").toString());
-        System.out.println(new JSONArray("123").toJSONString(1));
-    }
+
 
     // 计算当前队列中假任务的数量
     private long countExistingDummyTasks(Long userId) {
@@ -1586,4 +1583,15 @@ public class MidjourneyServiceImpl implements MidjourneyService {
         return "data:image/"+fileExt+";base64,"+Base64.getEncoder().encodeToString(imageBytes);
     }
 
+
+    /**
+     * 违禁词校验
+     */
+    private final static List<String> bannedPrompts = Arrays.asList("twerk,making love,voluptuous,naughty,wincest,orgy,no clothes,au naturel,no shirt,decapitate,bare,nude,barely dressed,bra,risque,scantily clad,cleavage,stripped,infested,full frontal,unclothed,invisible clothes,wearing nothing,lingerie,with no shirt,naked,without clothes on,negligee,zero clothes,gruesome,fascist,nazi,prophet mohammed,slave,coon,honkey,cocaine,heroin,meth,crack,kill,belle delphine,hitler,jinping,lolita,president xi,torture,disturbing,farts,fart,poop,infected,warts,shit,brown pudding,bunghole,vomit,seductive,sperm,sexy,sadist,sensored,censored,silenced,deepfake,inappropriate,waifu,succubus,slaughter,surgery,reproduce,crucified,seductively,explicit,large bust,wang,teratoma,intimate,see through,tryphophobia,bloodbath,wound,cronenberg,khorne,cannibal,cannibalism,visceral,guts,bloodshot,gory,killing,crucifixion,vivisection,massacre,hemoglobin,suicide,arse,labia,ass,mammaries,badonkers,bloody,minge,big ass,mommy milker,booba,nipple,oppai,booty,organs,bosom,ovaries,flesh,breasts,penis,busty,phallus,clunge,sexy female,crotch,skimpy,dick,thick,bruises,girth,titty,honkers,vagina,hooters,veiny,knob,ahegao,pinup,ballgag,car crash,playboy,bimbo,pleasure,bodily fluids,pleasures,boudoir,rule34,brothel,seducing,dominatrix,corpse,erotic,fuck,sensual,hardcore,hentai,shag,horny,shibari,incest,smut,jav,jerk off king at pic,thot,kinbaku,legs spread,sensuality,belly button,porn,patriotic,bleed,excrement,petite,seduction,mccurry,provocative,sultry,erected,camisole,tight white,arrest,see-through,feces,anus,revealing clothing,vein,loli,-edge,boobs,-backed,tied up,zedong,bathing,jail,reticulum,rear end,sakimichan,behind bars,shirtless,sexi,sexualiz,sexual,bikini,cutting,xxx,clear,uncothed,hot,pus,mp5,1488,transparent,dong,clothes open,shape");
+
+    public static void main(String[] args) {
+        System.out.println(Arrays.stream(bannedPrompts.get(0).split(",")).collect(Collectors.toList()));
+    }
+
+
 }