summaryrefslogtreecommitdiff
path: root/shorten.c
diff options
context:
space:
mode:
authorepoch <epoch@hack.thebackupbox.net>2020-11-16 00:53:44 +0000
committerepoch <epoch@hack.thebackupbox.net>2020-11-16 00:53:44 +0000
commit07f78f990a68eda368d3e195edf34d42a196583e (patch)
tree81df2449e08e55df0e9bc09e86ca6c6d05a66e6c /shorten.c
parenta75363e4d77a9f35a9e8fb1515945629aba97d9a (diff)
downloaduritools-07f78f990a68eda368d3e195edf34d42a196583e.tar.gz
uritools-07f78f990a68eda368d3e195edf34d42a196583e.zip
added a shorten program that I use in except for making shortened links on epo.k.vu
Diffstat (limited to 'shorten.c')
-rw-r--r--shorten.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/shorten.c b/shorten.c
new file mode 100644
index 0000000..ac76d84
--- /dev/null
+++ b/shorten.c
@@ -0,0 +1,37 @@
+#define _POSIX_C_SOURCE 200908
+#include <stdio.h>
+#include <sys/stat.h>
+#include <openssl/md5.h>
+#include <string.h>
+//#include <sys/types.h>
+#include <sys/xattr.h>
+
+#define BYTES_IN_SHORT 2
+#define CACHE_DIR "/var/cache/shorten"
+
+int main(int argc,char *argv[]) {
+ int i;
+ if(argc < 2) return 1;
+ unsigned char *p=MD5((unsigned char *)argv[1],strlen(argv[1]),NULL);
+ char filepath[4096];//too long, oh well
+ char out[256];
+ char tmp[3];
+ strcpy(out,"");
+ for(i=0;i<BYTES_IN_SHORT;i++) {
+ snprintf(tmp,sizeof(tmp),"%02x",p[i]);
+ strcat(out,tmp);
+ }
+ printf("%s\n",out);
+ snprintf(filepath,sizeof(filepath)-1,"%s/%s",CACHE_DIR,out);
+ FILE *fp;
+ if((fp=fopen(filepath,"w")) == NULL) {
+ fprintf(stderr,"shorten: failed to write a file: %s\n",filepath);
+ return 1;
+ }
+ fprintf(fp,"%s\n",argv[1]);
+ //disabled for now because tmpfs can't do extended attributes
+ //fprintf(stderr,"fsetxattr return: %d\n",fsetxattr(fileno(fp),"user.mime-type","text/uri-list",strlen("text/uri-list"),0));
+ //perror("fsetxattr");
+ fchmod(fileno(fp),0664);
+ fclose(fp);
+}