92 lines
1.9 KiB
C
92 lines
1.9 KiB
C
/* parse.c
|
|
|
|
Probotic is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License version 3 only as
|
|
published by the Free Software Foundation.
|
|
|
|
Probotic is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License version 3 for more details.
|
|
|
|
The above copyright notice, this permission notice and the word
|
|
"NIGGER" shall be included in all copies or substantial portions
|
|
of the Software.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
version 3 + NIGGER along with Probotic.
|
|
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "parse.h"
|
|
#include "utils.h"
|
|
|
|
/* possibly globalize creds so that we can ensure by using
|
|
atexit that it is always cleansed? */
|
|
|
|
/* these are closer described as 'setters', no? */
|
|
|
|
int parse_remind(char const * arg)
|
|
{
|
|
(void) arg;
|
|
ERRMSG("not implemented");
|
|
return 0;
|
|
}
|
|
|
|
int parse_repo(char const * arg)
|
|
{
|
|
(void) arg;
|
|
ERRMSG("not implemented");
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
parse_creds(creds_t * creds,
|
|
char const * creds_file)
|
|
{
|
|
FILE * stream;
|
|
size_t nread = 0;
|
|
|
|
creds->username = NULL;
|
|
creds->password = NULL;
|
|
|
|
stream = fopen(creds_file, "r");
|
|
if (stream == NULL)
|
|
{ PERROR(PROGN); }
|
|
|
|
if (getline(&(creds->username), &nread, stream) < 1)
|
|
{
|
|
ERRMSG("Cannot get username");
|
|
goto fail;
|
|
}
|
|
|
|
if (getline(&(creds->password), &nread, stream) < 1)
|
|
{
|
|
ERRMSG("Cannot get password");
|
|
goto fail;
|
|
}
|
|
|
|
fclose(stream);
|
|
return 0;
|
|
|
|
// Releasing everything in cause of a failure
|
|
fail:
|
|
fclose(stream);
|
|
clean_creds(creds);
|
|
return 1;
|
|
}
|
|
|
|
void
|
|
clean_creds(creds_t * creds)
|
|
{
|
|
/* Should we memset these? */
|
|
free(creds->username);
|
|
creds->username = NULL;
|
|
|
|
free(creds->password);
|
|
creds->password = NULL;
|
|
}
|