Actually implemented `dispense -u`
authorJohn Hodge <[email protected]>
Fri, 7 Jan 2011 07:16:57 +0000 (15:16 +0800)
committerJohn Hodge <[email protected]>
Fri, 7 Jan 2011 07:16:57 +0000 (15:16 +0800)
- Only the backend was implemented before

src/client/main.c

index f433cae..2d03c28 100644 (file)
@@ -71,7 +71,7 @@ regex_t       gArrayRegex, gItemRegex, gSaltRegex, gUserInfoRegex;
  int   gbIsAuthenticated = 0;
 
 char   *gsItemPattern; //!< Item pattern
  int   gbIsAuthenticated = 0;
 
 char   *gsItemPattern; //!< Item pattern
-char   *gsOverrideUser;        //!< '-u' Dispense as another user
+char   *gsEffectiveUser;       //!< '-u' Dispense as another user
  int   gbUseNCurses = 0;       //!< '-G' Use the NCurses GUI?
  int   giMinimumBalance = INT_MIN;     //!< '-m' Minumum balance for `dispense acct`
  int   giMaximumBalance = INT_MAX;     //!< '-M' Maximum balance for `dispense acct`
  int   gbUseNCurses = 0;       //!< '-G' Use the NCurses GUI?
  int   giMinimumBalance = INT_MIN;     //!< '-m' Minumum balance for `dispense acct`
  int   giMaximumBalance = INT_MAX;     //!< '-M' Maximum balance for `dispense acct`
@@ -115,7 +115,7 @@ int main(int argc, char *argv[])
                                break;
                        
                        case 'u':       // Override User
                                break;
                        
                        case 'u':       // Override User
-                               gsOverrideUser = argv[++i];
+                               gsEffectiveUser = argv[++i];
                                break;
                        
                        case 'G':       // Use GUI
                                break;
                        
                        case 'G':       // Use GUI
@@ -642,9 +642,8 @@ int Authenticate(int Socket)
        {
        
        case 200:       // Authenticated, return :)
        {
        
        case 200:       // Authenticated, return :)
-               gbIsAuthenticated = 1;
                free(buf);
                free(buf);
-               return 0;
+               break;
        
        case 401:       // Untrusted, attempt password authentication
                free(buf);
        
        case 401:       // Untrusted, attempt password authentication
                free(buf);
@@ -711,12 +710,9 @@ int Authenticate(int Socket)
                        return -1;
                }
                free(buf);
                        return -1;
                }
                free(buf);
-               if( i < 3 ) {
-                       gbIsAuthenticated = 1;
-                       return 0;
-               }
-               else
+               if( i == 3 )
                        return 2;       // 2 = Bad Password
                        return 2;       // 2 = Bad Password
+               break;
        
        case 404:       // Bad Username
                fprintf(stderr, "Bad Username '%s'\n", pwd->pw_name);
        
        case 404:       // Bad Username
                fprintf(stderr, "Bad Username '%s'\n", pwd->pw_name);
@@ -729,6 +725,43 @@ int Authenticate(int Socket)
                free(buf);
                return -1;
        }
                free(buf);
                return -1;
        }
+       
+       // Set effective user
+       if( gsEffectiveUser ) {
+               sendf(Socket, "SETEUSER %s\n", gsEffectiveUser);
+               
+               buf = ReadLine(Socket);
+               responseCode = atoi(buf);
+               
+               switch(responseCode)
+               {
+               case 200:
+                       printf("Running as '%s' by '%s'\n", gsEffectiveUser, pwd->pw_name);
+                       break;
+               
+               case 403:
+                       printf("Only coke members can use `dispense -u`\n");
+                       free(buf);
+                       return -1;
+               
+               case 404:
+                       printf("Invalid user selected\n");
+                       free(buf);
+                       return -1;
+               
+               default:
+                       fprintf(stderr, "Unkown response code %i from server\n", responseCode);
+                       printf("%s\n", buf);
+                       free(buf);
+                       exit(-1);
+               }
+               
+               free(buf);
+       }
+       
+       gbIsAuthenticated = 1;
+       
+       return 0;
 }
 
 
 }
 
 

UCC git Repository :: git.ucc.asn.au