forked from lastpass/lastpass-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd-sync.c
59 lines (52 loc) · 1.08 KB
/
cmd-sync.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Copyright (c) 2014 LastPass.
*
*
*/
#include "cmd.h"
#include "util.h"
#include "config.h"
#include "terminal.h"
#include "kdf.h"
#include "upload-queue.h"
#include <getopt.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
int cmd_sync(int argc, char **argv)
{
unsigned char key[KDF_HASH_LEN];
struct session *session = NULL;
struct blob *blob = NULL;
static struct option long_options[] = {
{"background", no_argument, NULL, 'b'},
{"color", required_argument, NULL, 'C'},
{0, 0, 0, 0}
};
int option;
int option_index;
bool background = false;
while ((option = getopt_long(argc, argv, "b", long_options, &option_index)) != -1) {
switch (option) {
case 'b':
background = true;
break;
case 'C':
terminal_set_color_mode(
parse_color_mode_string(optarg));
break;
case '?':
default:
die_usage(cmd_sync_usage);
}
}
init_all(0, key, &session, NULL);
upload_queue_ensure_running(key, session);
if (!background) {
while (upload_queue_is_running())
usleep(1000000 / 3);
}
session_free(session);
blob_free(blob);
return 0;
}