import de.cinderella.api.cs.CindyScript; import de.cinderella.api.cs.CindyScriptPlugin; import org.apache.commons.math.linear.MatrixUtils; import org.apache.commons.math.linear.RealMatrix; import java.awt.*; import java.util.ArrayList; import java.util.Arrays; import java.io.*; public class KetCindyPlugin extends CindyScriptPlugin { public String getName() { return "KetCindy Plugin"; } public String getAuthor() { return "The KetCindy Project Team"; } @CindyScript("systemproperty") public String getUserID(String s) { return System.getProperty(s); } @CindyScript("square") public double quadrieren(double x) { return x * x; } @CindyScript("grayvalue") public double getGray(Color c) { return (c.getBlue() + c.getRed() + c.getGreen()) / 3.; } @CindyScript("testarray") public String writeArray(ArrayList al) { return Arrays.toString(al.toArray()); } @CindyScript("getdir") public String getdir() { return System.getProperty("user.dir"); } @CindyScript("gethome") public String gethome() { return System.getProperty("user.home"); } @CindyScript("iswindows") static public boolean iswindows(){ String os=System.getProperty("os.name").toLowerCase(); if(os!=null && os.startsWith("windows")){ return true; } else{ return false; } } @CindyScript("ismacosx") public static boolean ismacosx(){ String os=System.getProperty("os.name").toLowerCase(); if(os!=null && os.startsWith("mac")){ return true; } else{ return false; } } @CindyScript("islinux") public static boolean islinux(){ String os=System.getProperty("os.name").toLowerCase(); if(os!=null && os.startsWith("linux")){ return true; } else{ return false; } } @CindyScript("iswin") public static boolean iswin() { String OS_NAME = System.getProperty("os.name").toLowerCase(); return OS_NAME.startsWith("windows"); } @CindyScript("kc") public static String kc(String args){ return "Improper call"; } @CindyScript("kc") public static String kc(String args,String args2,String args3) throws IOException { ProcessBuilder pb = new ProcessBuilder(); File f = new File(args); int flg=0; int pos=0; String kst=""; BufferedReader br = new BufferedReader(new FileReader(f)); String str; while((str = br.readLine()) != null){ if(str.indexOf("*")>-1|| str.indexOf("?")>-1){ flg=1; } else{ str=str.toUpperCase(); str=str.replaceAll("\""," "); /* 16.06.08 */ if(str.indexOf("RM ")>-1 || str.indexOf("DEL ")>-1){ if(str.indexOf(args3.toUpperCase())==-1){ flg=2; } } if(str.indexOf("MV ")>-1 || str.indexOf("MOVE ")>-1){ flg=3; } if(str.indexOf("RD ")>-1 || str.indexOf("RMDIR ")>-1){ flg=4; } // 16.04.09from if(str.indexOf("SHUTDOWN ")>-1 || str.indexOf("SLEEP ")>-1){ flg=5; } if(str.indexOf("CLEAR ")>-1 || str.indexOf("CLS ")>-1){ flg=6; } if(str.indexOf("FTP ")>-1|| str.indexOf("TELNET ")>-1){ flg=7; } if(str.indexOf("USERMOD ")>-1 || str.indexOf("USERDEL ")>-1){ flg=8; } if(str.indexOf("USERADD ")>-1 || str.indexOf("USERMOD ")>-1){ flg=9; } if(str.indexOf("CHMOD ")>-1){ if(str.indexOf("CHMOD +")==-1){ flg=10; } } if(str.indexOf("CRONTAB ")>-1 || str.indexOf("KILL ")>-1){ flg=11; } if(str.indexOf("AT ")>-1){ pos=str.indexOf("AT "); if(pos==0){ flg=12; } else{ kst=str.substring(pos-1,pos); if(!kst.equals("B")){ flg=12; } } // 16.04.09upto } if(str.indexOf("PATH ")>-1 || str.indexOf("PAUSE ")>-1 || str.indexOf("ARP ")>-1){ flg=13; } if(str.indexOf("RENAME ")>-1 || str.indexOf("START ")>-1){ flg=14; } } } br.close(); // 16.06.05from if(flg>0){ return "Improper file "+String.valueOf(flg); } Long tm=System.currentTimeMillis()-f.lastModified(); if(tm>10000 || tm<0){ /* 16.06.08 */ flg=50; return "Time expired"; } if((args.indexOf("kc.")==-1|| args2.indexOf("ketbin")==-1) || args3.indexOf(".t")==-1){ flg=60; return "Improper form"; } if(flg==0){ if(iswindows()){ pb.command("cmd.exe","/c","start",args); } else{ if(ismacosx()){ if(args2.indexOf("open")>-1){ /* 2016.06.07from */ pb.command("open",args); } else{ pb.command("sh",args); } /* 2016.06.07upto */ } else{ pb.command("sh",args); } } } Process process = pb.start(); return "Normal end"; // 16.06.05upto } @CindyScript("ispaulvisiting") public static boolean ispaulvisiting() { return true; } @CindyScript("texv") public static void texv( String s, String d, String sf, String tf) throws Exception{ ProcessBuilder pb = new ProcessBuilder(); String[] cmd = {s,d,sf,tf}; pb.command(cmd); Process process = pb.start(); return ; } @CindyScript("givemeamatrix2") public static Object givemeamatrix2() { try { return "the Matrix: " + theGiveMeAMatrix().toString(); } catch (Throwable e) { e.printStackTrace(); return "no Matrix: " + e.toString(); } } public static Object theGiveMeAMatrix() { double[][] matrixData = { {1d,2d,3d}, {2d,5d,3d}}; RealMatrix m = MatrixUtils.createRealMatrix(matrixData); return m; } @CindyScript("getdirhead") public static String getdirhead(){ if(iswindows()){ return System.getProperty("user.home")+"\\ketcindy"; } else if(ismacosx()){ return System.getProperty("user.home")+"/ketcindy"; } else if(islinux()){ return "/usr/share/ketcindy"; } else{ return "unknown"; } } @CindyScript("iskcexists") public static boolean iskcexists(String dir){ File file = new File(dir+"/kc.sh"); if(file.exists()){ return true; } else{ return false; } } }