summaryrefslogtreecommitdiff
path: root/hscript/user.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-18 18:31:19 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-18 18:31:19 -0500
commit799b2fc3939bf4e30ed404a67aa7697ae352f5fe (patch)
tree06ca7e1282503580f557d4b2b41a0897d32aa91c /hscript/user.hh
parente4cd6fffb79807fa1d184bc8d108a91aea8af649 (diff)
downloadhorizon-799b2fc3939bf4e30ed404a67aa7697ae352f5fe.tar.gz
horizon-799b2fc3939bf4e30ed404a67aa7697ae352f5fe.tar.bz2
horizon-799b2fc3939bf4e30ed404a67aa7697ae352f5fe.tar.xz
horizon-799b2fc3939bf4e30ed404a67aa7697ae352f5fe.zip
hscript: Add stub User* classes
Diffstat (limited to 'hscript/user.hh')
-rw-r--r--hscript/user.hh81
1 files changed, 77 insertions, 4 deletions
diff --git a/hscript/user.hh b/hscript/user.hh
index 3f4d23b..b8d5386 100644
--- a/hscript/user.hh
+++ b/hscript/user.hh
@@ -13,6 +13,8 @@
#ifndef __HSCRIPT_USER_HH_
#define __HSCRIPT_USER_HH_
+#include <set>
+#include <string>
#include "key.hh"
namespace Horizon {
@@ -20,28 +22,99 @@ namespace Keys {
class RootPassphrase : public StringKey {
private:
- RootPassphrase(int _line, const std::string my_pw) :
+ RootPassphrase(int _line, const std::string &my_pw) :
StringKey(_line, my_pw) {}
public:
- static Key *parseFromData(const std::string &data, int lineno, int *errors,
- int *warnings);
+ static Key *parseFromData(const std::string &, int, int*, int*);
bool validate(ScriptOptions) const override;
bool execute(ScriptOptions) const override;
};
class Username : public StringKey {
+private:
+ Username(int _line, const std::string &name) :
+ StringKey(_line, name) {}
+public:
+ static Key *parseFromData(const std::string &, int, int*, int*);
+ bool validate(ScriptOptions) const override;
+ bool execute(ScriptOptions) const override;
};
class UserAlias : public Key {
+private:
+ const std::string _username;
+ const std::string _alias;
+
+ UserAlias(int _line, const std::string &_n, const std::string &_a) :
+ Key(_line), _username(_n), _alias(_a) {}
+public:
+ static Key *parseFromData(const std::string &, int, int*, int*);
+
+ /*! Retrieve the username for this alias. */
+ const std::string &username() const { return this->_username; }
+ /*! Retrieve the alias for the account. */
+ const std::string &alias() const { return this->_alias; }
+
+ bool validate(ScriptOptions) const override;
+ bool execute(ScriptOptions) const override;
};
-class UserPassphrase : public StringKey {
+class UserPassphrase : public Key {
+private:
+ const std::string _username;
+ const std::string _passphrase;
+
+ UserPassphrase(int _line, const std::string &_n, const std::string &_p) :
+ Key(_line), _username(_n), _passphrase(_p) {}
+public:
+ static Key *parseFromData(const std::string &, int, int*, int*);
+
+ /*! Retrieve the username for this passphrase. */
+ const std::string &username() const { return this->_username; }
+ /*! Retrieve the passphrase for the account. */
+ const std::string &passphrase() const { return this->_passphrase; }
+
+ bool validate(ScriptOptions) const override;
+ bool execute(ScriptOptions) const override;
};
class UserIcon : public Key {
+private:
+ const std::string _username;
+ const std::string _icon_path;
+
+ UserIcon(int _line, const std::string &_n, const std::string &_i) :
+ Key(_line), _username(_n), _icon_path(_i) {}
+public:
+ static Key *parseFromData(const std::string &, int, int*, int*);
+
+ /*! Retrieve the username for this icon. */
+ const std::string &username() const { return this->_username; }
+ /*! Retrieve the icon path for the account. */
+ const std::string &icon() const { return this->_icon_path; }
+
+ bool validate(ScriptOptions) const override;
+ bool execute(ScriptOptions) const override;
};
class UserGroups : public Key {
+private:
+ const std::string _username;
+ const std::set<std::string> _groups;
+
+ UserGroups(int _line, const std::string &_n,
+ const std::set<std::string> &_g) :
+ Key(_line), _username(_n), _groups(_g) {}
+public:
+ static Key *parseFromData(const std::string &, int, int*, int*);
+
+ /*! Retrieve the username for this group set. */
+ const std::string &username() const { return this->_username; }
+ /*! Retrieve the groups for the account. */
+ const std::set<std::string> &groups() const { return this->_groups; }
+
+ bool validate(ScriptOptions) const override;
+ bool execute(ScriptOptions) const override;
};
}