tg/main.c

199 lines
4.9 KiB
C
Raw Normal View History

2013-10-03 08:38:25 -04:00
/*
main.c: main initialization file
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.
This program 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 for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <pwd.h>
#include <termios.h>
#include <unistd.h>
#include <assert.h>
#include <readline/readline.h>
#include <sys/stat.h>
#include <time.h>
#include <fcntl.h>
#include "loop.h"
#define PROGNAME "telegram-client"
#define VERSION "0.01"
#define CONFIG_DIRECTORY ".telegram/"
#define CONFIG_FILE CONFIG_DIRECTORY "config"
#define DOWNLOADS_DIRECTORY "downloads/"
#define CONFIG_DIRECTORY_MODE 0700
#define DEFAULT_CONFIG_CONTENTS \
"# This is an empty config file\n" \
"# Feel free to put something here\n"
char *default_username;
int setup_mode;
char *auth_token;
void set_default_username (const char *s) {
if (default_username) {
free (default_username);
}
default_username = strdup (s);
}
void set_setup_mode (void) {
setup_mode = 1;
}
/* {{{ TERMINAL */
tcflag_t old_lflag;
cc_t old_vtime;
struct termios term;
void get_terminal_attributes (void) {
if (tcgetattr (STDIN_FILENO, &term) < 0) {
perror ("tcgetattr()");
exit (EXIT_FAILURE);
}
old_lflag = term.c_lflag;
old_vtime = term.c_cc[VTIME];
}
/* }}} */
char *get_home_directory (void) {
struct passwd *current_passwd;
uid_t user_id;
setpwent ();
user_id = getuid ();
while ((current_passwd = getpwent ())) {
if (current_passwd->pw_uid == user_id) {
return current_passwd->pw_dir;
}
}
return 0;
}
char *get_config_directory (void) {
char *config_directory;
int length = strlen (get_home_directory ()) + strlen (CONFIG_DIRECTORY) + 2;
config_directory = (char *) calloc (length, sizeof (char));
sprintf (config_directory, "%s/" CONFIG_DIRECTORY,
2013-10-03 12:10:53 -04:00
get_home_directory ());
2013-10-03 08:38:25 -04:00
return config_directory;
}
char *get_config_filename (void) {
char *config_filename;
int length = strlen (get_home_directory ()) + strlen (CONFIG_FILE) + 2;
config_filename = (char *) calloc (length, sizeof (char));
sprintf (config_filename, "%s/" CONFIG_FILE, get_home_directory ());
return config_filename;
}
char *get_downloads_directory (void)
{
char *downloads_directory;
int length = strlen (get_config_directory ()) + strlen (DOWNLOADS_DIRECTORY) + 2;
downloads_directory = (char *) calloc (length, sizeof (char));
sprintf (downloads_directory, "%s/" DOWNLOADS_DIRECTORY, get_config_directory ());
return downloads_directory;
}
void running_for_first_time (void) {
struct stat *config_file_stat = NULL;
int config_file_fd;
char *config_directory = get_config_directory ();
char *config_filename = get_config_filename ();
char *downloads_directory = get_downloads_directory ();
if (mkdir (config_directory, CONFIG_DIRECTORY_MODE) != 0) {
return;
} else {
printf ("\nRunning " PROGNAME " for first time!!\n");
printf ("[%s] created\n", config_directory);
}
// see if config file is there
if (stat (config_filename, config_file_stat) != 0) {
// config file missing, so touch it
config_file_fd = open (config_filename, O_CREAT | O_RDWR, S_IRWXU);
2013-10-03 12:10:53 -04:00
if (config_file_fd == -1) {
perror ("open[config_file]");
exit (EXIT_FAILURE);
}
2013-10-03 08:38:25 -04:00
if (fchmod (config_file_fd, CONFIG_DIRECTORY_MODE) != 0) {
2013-10-03 12:10:53 -04:00
perror ("fchmod[" CONFIG_FILE "]");
exit (EXIT_FAILURE);
}
2013-10-03 08:38:25 -04:00
if (write (config_file_fd, DEFAULT_CONFIG_CONTENTS, strlen (DEFAULT_CONFIG_CONTENTS)) <= 0) {
2013-10-03 12:10:53 -04:00
perror ("write[config_file]");
exit (EXIT_FAILURE);
}
2013-10-03 08:38:25 -04:00
close (config_file_fd);
printf ("[%s] created\n", config_filename);
/* create downloads directory */
if (mkdir (downloads_directory, 0755) !=0) {
2013-10-03 12:10:53 -04:00
perror ("creating download directory");
exit (EXIT_FAILURE);
}
2013-10-03 08:38:25 -04:00
}
set_setup_mode ();
}
void inner_main (void) {
loop ();
}
void usage (void) {
printf ("%s [-u username]\n", PROGNAME);
exit (1);
}
void args_parse (int argc, char **argv) {
int opt = 0;
while ((opt = getopt (argc, argv, "u:h")) != -1) {
switch (opt) {
case 'u':
set_default_username (optarg);
break;
case 'h':
default:
usage ();
break;
}
}
}
int main (int argc, char **argv) {
running_for_first_time ();
get_terminal_attributes ();
args_parse (argc, argv);
inner_main ();
return 0;
}