]> Nishi Git Mirror - sp.git/commitdiff
showpass: void → const char*
author諏訪子 <suwako@076.moe>
Sat, 3 Feb 2024 10:10:20 +0000 (19:10 +0900)
committer諏訪子 <suwako@076.moe>
Sat, 3 Feb 2024 10:10:35 +0000 (19:10 +0900)
main.c
showpass.c
showpass.h

diff --git a/main.c b/main.c
index 762ef50b8847801a3cd237e88b0b3e53f729491e..1d712a1edaa67f54eb2ebfa181ffce3976afba02 100644 (file)
--- a/main.c
+++ b/main.c
@@ -9,6 +9,7 @@
 #include "showpass.h"
 #include "yankpass.h"
 #include "listpass.h"
+/* #include "chkpass.h" */
 #include "addpass.h"
 #include "delpass.h"
 #include "genpass.h"
@@ -25,6 +26,7 @@ void helpme() {
   printf("%s -s <パスワード名>         :パスワードを表示\n", sofname);
   printf("%s -y <パスワード名>         :パスワードを表示せずクリップボードにコピーする\n", sofname);
   printf("%s -l                        :パスワード一覧を表示\n", sofname);
+  printf("%s -c                        :複数サイトで同じパスワードを利用かどうかの確認\n", sofname);
   printf("%s -a <パスワード名>         :パスワードを追加\n", sofname);
   printf("%s -d <パスワード名>         :パスワードを削除\n", sofname);
   printf("%s -e <パスワード名>         :パスワードを変更\n", sofname);
@@ -43,6 +45,7 @@ void helpme_en() {
   printf("%s -s <Password name>                   : Show password\n", sofname);
   printf("%s -y <Password name>                   : Copy password to clipboard without show\n", sofname);
   printf("%s -l                                   : Show me list of password\n", sofname);
+  printf("%s -c                                   : Check if you use the same password on multiple website\n", sofname);
   printf("%s -a <Password name>                   : Add password\n", sofname);
   printf("%s -d <Password name>                   : Delete password\n", sofname);
   printf("%s -e <Password name>                   : Edit password\n", sofname);
@@ -62,7 +65,7 @@ int main (int argc, char* argv[]) {
   }
 
   if (argc == 3 && strcmp(argv[1], "-i") == 0) initpass(argv[2]);
-  else if (argc == 3 && strcmp(argv[1], "-s") == 0) showpass(argv[2]);
+  else if (argc == 3 && strcmp(argv[1], "-s") == 0) printf("%s", showpass(argv[2]));
   else if (argc == 3 && strcmp(argv[1], "-y") == 0) yankpass(argv[2]);
   else if (argc == 2 && strcmp(argv[1], "-l") == 0) {
     char basePath[512];
@@ -78,6 +81,7 @@ int main (int argc, char* argv[]) {
 
     listpass(basePath, 0);
   }
+  /* else if (argc == 3 && strcmp(argv[1], "-c") == 0) chkpass(); */
   else if (argc == 3 && strcmp(argv[1], "-a") == 0) addpass(argv[2]);
   else if (argc == 3 && strcmp(argv[1], "-d") == 0) delpass(argv[2], 0);
   else if (argc == 3 && strcmp(argv[1], "-e") == 0) {
index 126277566951bdc30a3137035878a0ac38f66ecc..830573433cd4891c786a17b0ed01705e643b6f06 100644 (file)
@@ -16,7 +16,7 @@ void clean_up(gpgme_ctx_t ctx, gpgme_data_t in, gpgme_data_t out, FILE* gpgfile,
   gpgme_release(ctx);
 }
 
-void showpass(char* file) {
+const char* showpass(char* file) {
   char *lang = getenv("SP_LANG");
 
   gpgme_ctx_t ctx;
@@ -34,7 +34,7 @@ void showpass(char* file) {
   if (err) {
     if (lang != NULL && strncmp(lang, "en", 2) == 0) fprintf(stderr, "Failed to generating GPGME: %s\n", gpgme_strerror(err));
     else fprintf(stderr, "GPGMEを創作に失敗:%s\n", gpgme_strerror(err));
-    return;
+    return NULL;
   }
 
   // OpenPGPプロトコールを設定
@@ -45,7 +45,7 @@ void showpass(char* file) {
   if (homedir == NULL) {
     if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to getting home directory");
     else perror("ホームディレクトリを受取に失敗");
-    return;
+    return NULL;
   }
 
   char* basedir = "/.local/share/sp/";
@@ -55,7 +55,7 @@ void showpass(char* file) {
   if (gpgpath == NULL) {
     if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memeory");
     else perror("メモリを割当に失敗");
-    return;
+    return NULL;
   }
 
   snprintf(gpgpath, alllen, "%s%s%s%s", homedir, basedir, file, ext);
@@ -69,7 +69,7 @@ void showpass(char* file) {
       fprintf(stderr, "失敗したパス: %s\n", gpgpath);
     }
     free(gpgpath);
-    return;
+    return NULL;
   }
 
   // ファイルからinデータオブジェクトを創作
@@ -77,7 +77,7 @@ void showpass(char* file) {
     if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to generating the GPGME data object");
     else perror("GPGMEデータオブジェクトを創作に失敗");
     clean_up(ctx, in, out, gpgfile, gpgpath);
-    return;
+    return NULL;
   }
 
   // outデータオブジェクトを創作
@@ -85,7 +85,7 @@ void showpass(char* file) {
     if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to generating the GPGME data object");
     else perror("GPGMEデータオブジェクトを創作に失敗");
     clean_up(ctx, in, out, gpgfile, gpgpath);
-    return;
+    return NULL;
   }
 
   // データオブジェクトを創作
@@ -99,26 +99,31 @@ void showpass(char* file) {
 
     // 掃除
     clean_up(ctx, in, out, gpgfile, gpgpath);
-    return;
+    return NULL;
   }
 
   // 復号化したパスワードを表示する
   gpgme_data_seek(out, 0, SEEK_SET);
   char buffer[512];
+  char* res = malloc(512 * sizeof(char));
+  if (res == NULL) {
+    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memory");
+    else perror("メモリを役割に失敗");
+    clean_up(ctx, in, out, gpgfile, gpgpath);
+    return NULL;
+  }
+
   ssize_t read_bytes;
-  bool islastnl = false;
+  int i = 0;
 
   while ((read_bytes = gpgme_data_read(out, buffer, sizeof(buffer) - 1)) > 0) {
-    fwrite(buffer, 1, read_bytes, stdout);
-    if (buffer[read_bytes - 1] == '\n') {
-      islastnl = true;
-    }
+    memcpy(res + i, buffer, read_bytes);
+    i += read_bytes;
   }
 
-  if (!islastnl) {
-    putchar('\n');
-  }
+  res[i] = '\0';
 
   // 掃除
   clean_up(ctx, in, out, gpgfile, gpgpath);
+  return res;
 }
index 3c47d0f20238c5b77b620d9bce66184d074aaab3..7b5658405939df76fb3f3f50857e12e92fa2cb20 100644 (file)
@@ -1,6 +1,6 @@
 #ifndef SHOWPASS_H
 #define SHOWPASS_H
 
-void showpass(char* file);
+const char* showpass(char* file);
 
 #endif