3 * UCC (University [of WA] Computer Club) Electronic Accounting System
5 * cokebank.h - Coke-Bank common definitions
7 * This file is licenced under the 3-clause BSD Licence. See the file COPYING
12 * \brief Coke Bank API Documentation
19 #define COKEBANK_SALES_ACCT ">sales" //!< Sales made into
20 #define COKEBANK_SALES_PREFIX ">sales:" //!< Sales made into
21 #define COKEBANK_DEBT_ACCT ">countersum" //!< Credit taken out of
22 #define COKEBANK_FREE_ACCT ">freeitems" //!< ODay drink costs taken out of
23 #define COKEBANK_DONATE_ACCT ">donations" //!< Donations go here
24 #define COKEBANK_GRAT_ACCR ">gratuities" //!< Coke runs and new users
27 * \brief Account iterator opaque structure
29 * Opaque structure for account iterators returned by Bank_Iterator
30 * and used by Bank_IteratorNext and Bank_DelIterator
32 typedef struct sAcctIterator tAcctIterator;
36 * \brief Iterator for a collection of items
38 typedef struct sItemIterator tItemIterator;
41 * \brief Item structure
53 * \brief Flag values for the \a Flags parameter to Bank_Iterator
57 BANK_ITFLAG_MINBALANCE = 0x01, //!< Balance value is Minium Balance
58 BANK_ITFLAG_MAXBALANCE = 0x02, //!< Balance value is Maximum Balance (higher priority)
59 BANK_ITFLAG_SEENAFTER = 0x04, //!< Last seen value is lower bound
60 BANK_ITFLAG_SEENBEFORE = 0x08, //!< Last seen value is upper bound (higher priority)
62 BANK_ITFLAG_SORT_NONE = 0x000, //!< No sorting (up to the implementation)
63 BANK_ITFLAG_SORT_NAME = 0x100, //!< Sort alphabetically ascending by name
64 BANK_ITFLAG_SORT_BAL = 0x200, //!< Sort by balance, ascending
65 BANK_ITFLAG_SORT_UNIXID = 0x300, //!< Sort by UnixUID (TODO: Needed?)
66 BANK_ITFLAG_SORT_LASTSEEN = 0x400, //!< Sort by last seen time (ascending)
67 BANK_ITFLAG_SORTMASK = 0x700, //!< Sort type mask
68 BANK_ITFLAG_REVSORT = 0x800 //!< Sort descending instead
71 * \brief Flag values for the \a Flags parameter to Items_Iterator
75 ITEMS_ITFLAG_SHOWDISABLED = 0x001, //!< Show disabled items
76 ITEMS_ITFLAG_SORT_NONE = 0x000, //!< No sorting (up to the implementation)
77 ITEMS_ITFLAG_SORT_NAME = 0x100, //!< Sort alphabetically ascending by name
78 ITEMS_ITFLAG_SORT_PRICE = 0x200, //!< Sort by price, ascending
79 ITEMS_ITFLAG_SORT_IDENT = 0x300, //!< Sort by Identifier (handler:id)
80 ITEMS_ITFLAG_SORTMASK = 0x700, //!< Sort type mask
81 ITEMS_ITFLAG_REVSORT = 0x800 //!< Sort descending instead
85 * \brief User flag values
87 * User flag values used by Bank_GetFlags and Bank_SetFlags
89 enum eCokebank_Flags {
90 USER_FLAG_COKE = 0x01, //!< User is a coke member (can do coke accounting)
91 USER_FLAG_ADMIN = 0x02, //!< User is a administrator (can create, delete and lock accounts)
92 USER_FLAG_DOORGROUP = 0x04, //!< User is in the door group (can open the clubroom door)
93 USER_FLAG_INTERNAL = 0x40, //!< Account is internal (cannot be authenticated, no lower balance limit)
94 USER_FLAG_DISABLED = 0x80 //!< Account is disabled (no transactions allowed)
97 // --- Cokebank Functions ---
99 * \brief Initialise the cokebank
100 * \param Argument Cokebank argument specified in the dispense config file (typically the database path)
101 * \return Boolean Failure
103 extern int Bank_Initialise(const char *Argument);
106 * \brief Transfer money from one account to another
107 * \param SourceAcct UID (from \a Bank_GetUserID) to take the money from
108 * \param DestAcct UID (from \a Bank_GetUserID) give money to
109 * \param Ammount Amount of money (in cents) to transfer
110 * \param Reason Reason for the transfer
112 extern int Bank_Transfer(int SourceAcct, int DestAcct, int Ammount, const char *Reason);
114 * \brief Get flags on an account
115 * \param AcctID UID to get flags from
116 * \return Flag set as defined in eCokebank_Flags
118 extern int Bank_GetFlags(int AcctID);
120 * \brief Set an account's flags
121 * \param AcctID UID to set flags on
122 * \param Mask Mask of flags changed
123 * \param Value Final value of changed flags
125 extern int Bank_SetFlags(int AcctID, int Mask, int Value);
127 * \brief Get an account's balance
128 * \param AcctID Account to query
130 extern int Bank_GetBalance(int AcctID);
132 * \brief Get the name associated with an account
133 * \return Heap string
135 extern char *Bank_GetAcctName(int AcctID);
137 * \brief Get an account ID from a passed name
138 * \param Name Name to search for
139 * \return ID of the account, or -1 if not found
141 extern int Bank_GetAcctByName(const char *Name, int bCreate);
143 * \brief Create a new account
144 * \param Name Name for the new account (if NULL, an anoymous account is created)
145 * \return ID of the new account
147 extern int Bank_CreateAcct(const char *Name);
150 * \brief Create an account iterator
151 * \param FlagMask Mask of account flags to check
152 * \param FlagValues Wanted values for checked flags
153 * \param Flags Specifies the operation of \a MinMaxBalance and \a Timestamp (\see eBank_ItFlags)
154 * \param MinMaxBalance Mininum/Maximum balance
155 * \param LastSeen Latest/Earliest last seen time
156 * \return Pointer to an iterator across the selected data set
158 extern tAcctIterator *Bank_Iterator(int FlagMask, int FlagValues,
159 int Flags, int MinMaxBalance, time_t LastSeen);
162 * \brief Get the current entry in the iterator and move to the next
163 * \param It Iterator returned by Bank_Iterator
164 * \return Accoun ID, or -1 for end of list
166 extern int Bank_IteratorNext(tAcctIterator *It);
169 * \brief Free an allocated iterator
170 * \param It Iterator returned by Bank_Iterator
172 extern void Bank_DelIterator(tAcctIterator *It);
175 * \brief Validates a user's authentication
176 * \param Salt Salt given to the client for hashing the password
177 * \param Username Username used
178 * \param Password Password sent by the client
181 extern int Bank_GetUserAuth(const char *Salt, const char *Username, const char *Password);
184 * \brief Get an account ID from a MIFARE card ID
185 * \param CardID MIFARE card ID
188 extern int Bank_GetAcctByCard(const char *CardID);
191 * \brief Add a card to an account
192 * \param AcctID Account ID
193 * \param CardID MIFARE card ID
194 * \return Boolean failure
196 * \retval 1 Bad account ID
197 * \retval 2 Card in use
199 extern int Bank_AddAcctCard(int AcctID, const char *CardID);
201 // === Item Manipulation ===
203 extern tItem *Items_GetItem(char *Handler, int ID);
205 * \brief Create an item iterator
206 * \return Pointer to an iterator across the selected data set
208 extern tItemIterator *Items_Iterator(int Flags, char *Handler, int MaxPrice);
211 * \brief Get the current entry in the iterator and move to the next
212 * \param It Iterator returned by Items_Iterator
213 * \return Item ID, or -1 for end of list
215 extern tItem *Items_IteratorNext(tItemIterator *It);
218 * \brief Free an allocated iterator
219 * \param It Iterator returned by Items_Iterator
221 extern void Items_DelIterator(tItemIterator *It);
225 // Server provided helper functions
228 * \brief Create a formatted string on the heap
229 * \param Format Format string
230 * \return Heap string
232 extern char *mkstr(const char *Format, ...);
235 * \brief Dispense log access
236 * \note Try not to over-use, only stuff that matters should go in here
238 extern void Log_Info(const char *Format, ...);