forked from kb1isz/linDmrMaster
-
Notifications
You must be signed in to change notification settings - Fork 2
/
users.c
125 lines (113 loc) · 4.01 KB
/
users.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
* Linux DMR Master server
Copyright (C) 2014 Wim Hofman
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 of the License, 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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "master_server.h"
sqlite3 *openDatabase();
void closeDatabase();
void loadUsersToFile(){
CURL *curl;
FILE *fpu;
CURLcode res;
char userfilename[20] = "user.db";
curl = curl_easy_init();
syslog(LOG_NOTICE,"Start retrieving users\n");
if (curl) {
fpu = fopen(userfilename,"wb");
curl_easy_setopt(curl, CURLOPT_URL, "http://status.ircddb.net/dmr-user.php" );
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 10);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, fpu);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
fclose(fpu);
}
syslog(LOG_NOTICE,"End retrieving users\n");
}
void importUsers(){
FILE *fpr;
sqlite3 *dbase;
char line[500];
char SQLQUERY[500];
char *radioId,*callsign,*name,*date,*running;
int rc;
char userfilename[20] = "user.db";
fpr = fopen(userfilename,"rb");
bzero(line,sizeof(line));
dbase = openDatabase();
syslog(LOG_NOTICE,"Start importing users to database\n");
sprintf(SQLQUERY,"DELETE FROM callsigns");
if (sqlite3_exec(dbase,SQLQUERY,0,0,0) != 0){
syslog(LOG_NOTICE,"Failed to delete entries in table callsigns: %s\n",sqlite3_errmsg(dbase));
return;
}
sprintf(SQLQUERY,"BEGIN");
if (sqlite3_exec(dbase,SQLQUERY,0,0,0) != 0){
syslog(LOG_NOTICE,"Failed to start transaction: %s\n",sqlite3_errmsg(dbase));
return;
}
while (!feof(fpr)){
fgets(line,500,fpr);
running = strdup(line);
radioId = strsep(&running,"@");
callsign = strsep(&running,"@");
date = strsep(&running,"@");
name = strsep(&running,"@");
sprintf(SQLQUERY,"INSERT INTO callsigns (radioId,callsign,name) VALUES (%s,'%s','%s')",radioId,callsign,name);
if (sqlite3_exec(dbase,SQLQUERY,0,0,0) != 0){
syslog(LOG_NOTICE,"Failed to add user in table callsigns: %s\n",sqlite3_errmsg(dbase));
}
}
sprintf(SQLQUERY,"COMMIT");
if (sqlite3_exec(dbase,SQLQUERY,0,0,0) != 0){
syslog(LOG_NOTICE,"Failed to commit: %s\n",sqlite3_errmsg(dbase));
}
syslog(LOG_NOTICE,"End importing users to database\n");
fclose(fpr);
closeDatabase(dbase);
}
void importTalkGroups(){
FILE *fpr;
sqlite3 *dbase;
char line[500];
char SQLQUERY[500];
char *id,*name,*running;;
int rc;
char userfilename[20] = "talkgroups.db";
fpr = fopen(userfilename,"rb");
bzero(line,sizeof(line));
dbase = openDatabase();
syslog(LOG_NOTICE,"Start importing talkgroups to database\n");
sprintf(SQLQUERY,"BEGIN");
if (sqlite3_exec(dbase,SQLQUERY,0,0,0) != 0){
syslog(LOG_NOTICE,"Failed to start transaction: %s\n",sqlite3_errmsg(dbase));
return;
}
while (!feof(fpr)){
fgets(line,500,fpr);
running = strdup(line);
id = strsep(&running,";");
name = strsep(&running,";");
sprintf(SQLQUERY,"INSERT INTO callsigns (radioId,callsign,name) VALUES (%s,'%s','%s')",id,name,name);
if (sqlite3_exec(dbase,SQLQUERY,0,0,0) != 0){
syslog(LOG_NOTICE,"Failed to add talkgroup in table callsigns: %s\n",sqlite3_errmsg(dbase));
}
}
sprintf(SQLQUERY,"COMMIT");
if (sqlite3_exec(dbase,SQLQUERY,0,0,0) != 0){
syslog(LOG_NOTICE,"Failed to commit: %s\n",sqlite3_errmsg(dbase));
}
syslog(LOG_NOTICE,"End importing talkgroups to database\n");
fclose(fpr);
closeDatabase(dbase);
}