summaryrefslogtreecommitdiffstats
path: root/src/datahelpers.h
blob: 5daef81000a4317a86f1f7609c7f2179fe6d7b00 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#ifndef DATAHELPERS_H
#define DATAHELPERS_H

#include <QDateTime>
#include <QString>

/*!
    \struct passwordConfiguration
    \brief  holds the Password configuration settings
 */
struct passwordConfiguration {
  /**
   * @brief passwordConfiguration::selected character set.
   */
  enum characterSet {
    ALLCHARS = 0,
    ALPHABETICAL,
    ALPHANUMERIC,
    CUSTOM,
    CHARSETS_COUNT //  have to be last, for easier initialization of arrays
  } selected;
  /**
   * @brief passwordConfiguration::length of password.
   */
  int length;
  /**
   * @brief passwordConfiguration::Characters the different character sets.
   */
  QString Characters[CHARSETS_COUNT];
  passwordConfiguration() : selected(ALLCHARS), length(16) {
    Characters[ALLCHARS] =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890~!@#$%^&"
        "*()_-+={}[]|:;<>,.?"; /*AllChars*/
    Characters[ALPHABETICAL] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstu"
                               "vwxyz"; /*Only Alphabetical*/
    Characters[ALPHANUMERIC] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstu"
                               "vwxyz1234567890"; /*Alphabetical and Numerical*/
    Characters[CUSTOM] = Characters[ALLCHARS]; //  this may be redefined by user
  }
};

/*!
    \struct UserInfo
    \brief Stores key info lines including validity, creation date and more.
 */
struct UserInfo {
  UserInfo() : validity('-'), have_secret(false), enabled(false) {}

  /**
   * @brief UserInfo::fullyValid when validity is f or u.
   * http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=blob_plain;f=doc/DETAILS
   */
  bool fullyValid() { return validity == 'f' || validity == 'u'; }
  /**
   * @brief UserInfo::marginallyValid when validity is m.
   * http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=blob_plain;f=doc/DETAILS
   */
  bool marginallyValid() { return validity == 'm'; }
  /**
   * @brief UserInfo::isValid when fullyValid or marginallyValid.
   */
  bool isValid() { return fullyValid() || marginallyValid(); }

  /**
   * @brief UserInfo::name full name
   */
  QString name;
  /**
   * @brief UserInfo::key_id hexadecimal representation
   */
  QString key_id;
  /**
   * @brief UserInfo::validity GnuPG representation of validity
   * http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=blob_plain;f=doc/DETAILS
   */
  char validity;
  /**
   * @brief UserInfo::have_secret secret key is available
   * (can decrypt with this key)
   */
  bool have_secret;
  /**
   * @brief UserInfo::enabled
   */
  bool enabled;
  /**
   * @brief UserInfo::expiry date/time key expires
   */
  QDateTime expiry;
  /**
   * @brief UserInfo::created date/time key was created
   */
  QDateTime created;
};

#endif // DATAHELPERS_H