summaryrefslogtreecommitdiff
path: root/src/char_sql
diff options
context:
space:
mode:
authorzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-10-22 20:38:26 +0000
committerzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-10-22 20:38:26 +0000
commit38b5e25fd06a5d03413f59e3e37c6ffc21d0d02d (patch)
tree2ac7f91b25ed1c8da6e0e8bae0bb1e24b2c144d9 /src/char_sql
parent256a7ebe4e172686f547cf406fd642d6e76e4ed4 (diff)
downloadhercules-38b5e25fd06a5d03413f59e3e37c6ffc21d0d02d.tar.gz
hercules-38b5e25fd06a5d03413f59e3e37c6ffc21d0d02d.tar.bz2
hercules-38b5e25fd06a5d03413f59e3e37c6ffc21d0d02d.tar.xz
hercules-38b5e25fd06a5d03413f59e3e37c6ffc21d0d02d.zip
- Added the new mail system. Requires optimization and tests.
- Updated the maildb sql structure. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11548 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char_sql')
-rw-r--r--src/char_sql/Makefile.in3
-rw-r--r--src/char_sql/char.c3
-rw-r--r--src/char_sql/char.h1
-rw-r--r--src/char_sql/int_mail.c476
-rw-r--r--src/char_sql/int_mail.h12
-rw-r--r--src/char_sql/inter.c49
-rw-r--r--src/char_sql/inter.h7
7 files changed, 548 insertions, 3 deletions
diff --git a/src/char_sql/Makefile.in b/src/char_sql/Makefile.in
index b47869208..685d4286d 100644
--- a/src/char_sql/Makefile.in
+++ b/src/char_sql/Makefile.in
@@ -9,7 +9,7 @@ COMMON_H = ../common/core.h ../common/socket.h ../common/timer.h ../common/mmo.h
../common/strlib.h ../common/grfio.h \
../common/mapindex.h ../common/ers.h ../common/sql.h
-CHAR_OBJ = char.o inter.o int_party.o int_guild.o int_storage.o int_pet.o int_homun.o
+CHAR_OBJ = char.o inter.o int_party.o int_guild.o int_storage.o int_pet.o int_homun.o int_mail.o
HAVE_MYSQL=@HAVE_MYSQL@
ifeq ($(HAVE_MYSQL),yes)
@@ -54,3 +54,4 @@ int_guild.o: int_guild.c int_guild.h inter.h $(COMMON_H)
int_storage.o: int_storage.c int_storage.h char.h $(COMMON_H)
int_pet.o: int_pet.c int_pet.h inter.h char.h $(COMMON_H)
int_homun.o: int_homun.c int_homun.h inter.h char.h $(COMMON_H)
+int_mail.o: int_mail.c int_mail.h inter.h char.h $(COMMON_H) \ No newline at end of file
diff --git a/src/char_sql/char.c b/src/char_sql/char.c
index d66bbe1f2..649d4c368 100644
--- a/src/char_sql/char.c
+++ b/src/char_sql/char.c
@@ -59,6 +59,7 @@ char guild_skill_db[256] = "guild_skill";
char guild_storage_db[256] = "guild_storage";
char party_db[256] = "party";
char pet_db[256] = "pet";
+char mail_db[256] = "mail"; // MAIL SYSTEM
char friend_db[256] = "friends";
char hotkey_db[256] = "hotkey";
@@ -3447,6 +3448,8 @@ void sql_config_read(const char* cfgName)
strcpy(party_db,w2);
else if(!strcmpi(w1,"pet_db"))
strcpy(pet_db,w2);
+ else if(!strcmpi(w1,"mail_db"))
+ strcpy(mail_db,w2);
else if(!strcmpi(w1,"friend_db"))
strcpy(friend_db,w2);
else if(!strcmpi(w1,"hotkey_db"))
diff --git a/src/char_sql/char.h b/src/char_sql/char.h
index c99d1e16a..63f302808 100644
--- a/src/char_sql/char.h
+++ b/src/char_sql/char.h
@@ -57,6 +57,7 @@ extern char guild_skill_db[256];
extern char guild_storage_db[256];
extern char party_db[256];
extern char pet_db[256];
+extern char mail_db[256];
extern int db_use_sqldbs; // added for sql item_db read for char server [Valaris]
diff --git a/src/char_sql/int_mail.c b/src/char_sql/int_mail.c
new file mode 100644
index 000000000..4c21861c3
--- /dev/null
+++ b/src/char_sql/int_mail.c
@@ -0,0 +1,476 @@
+// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
+// For more information, see LICENCE in the main folder
+
+#include "../common/mmo.h"
+#include "../common/malloc.h"
+#include "../common/showmsg.h"
+#include "../common/socket.h"
+#include "../common/strlib.h"
+#include "../common/sql.h"
+#include "char.h"
+#include "inter.h"
+
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+
+struct mail_data *mail_data_pt = NULL;
+
+time_t calc_times(void)
+{
+ time_t temp = time(NULL);
+ return mktime(localtime(&temp));
+}
+
+int mail_fromsql(int char_id, struct mail_data *md)
+{
+ int i, j;
+ struct mail_message *msg;
+ struct item *item;
+ char *data;
+ StringBuf buf;
+
+ memset(md, 0, sizeof(struct mail_data));
+ md->amount = 0;
+ md->satured = 0;
+
+ StringBuf_Init(&buf);
+ StringBuf_AppendStr(&buf, "SELECT `id`,`send_name`,`send_id`,`dest_name`,`dest_id`,`title`,`message`,`time`,`read_flag`,"
+ "`zeny`,`amount`,`nameid`,`refine`,`attribute`,`identify`");
+ for (i = 0; i < MAX_SLOTS; i++)
+ StringBuf_Printf(&buf, ",`card%d`", i);
+ StringBuf_Printf(&buf, " FROM `%s` WHERE `dest_id`='%d' ORDER BY `id` LIMIT %d", mail_db, char_id, MAX_MAIL_INBOX + 1);
+
+ if( SQL_ERROR == Sql_Query(mail_handle, StringBuf_Value(&buf)) )
+ Sql_ShowDebug(mail_handle);
+
+ StringBuf_Destroy(&buf);
+
+ for (i = 0; i < MAX_MAIL_INBOX && SQL_SUCCESS == Sql_NextRow(mail_handle); ++i )
+ {
+ msg = &md->msg[i];
+ Sql_GetData(mail_handle, 0, &data, NULL); msg->id = atoi(data);
+ Sql_GetData(mail_handle, 1, &data, NULL); safestrncpy(msg->send_name, data, NAME_LENGTH);
+ Sql_GetData(mail_handle, 2, &data, NULL); msg->send_id = atoi(data);
+ Sql_GetData(mail_handle, 3, &data, NULL); safestrncpy(msg->dest_name, data, NAME_LENGTH);
+ Sql_GetData(mail_handle, 4, &data, NULL); msg->dest_id = atoi(data);
+ Sql_GetData(mail_handle, 5, &data, NULL); safestrncpy(msg->title, data, MAIL_TITLE_LENGTH);
+ Sql_GetData(mail_handle, 6, &data, NULL); safestrncpy(msg->body, data, MAIL_BODY_LENGTH);
+ Sql_GetData(mail_handle, 7, &data, NULL); msg->timestamp = atoi(data);
+ Sql_GetData(mail_handle, 8, &data, NULL); msg->read = atoi(data);
+ Sql_GetData(mail_handle, 9, &data, NULL); msg->zeny = atoi(data);
+ item = &msg->item;
+ Sql_GetData(mail_handle,10, &data, NULL); item->amount = (short)atoi(data);
+ Sql_GetData(mail_handle,11, &data, NULL); item->nameid = atoi(data);
+ Sql_GetData(mail_handle,12, &data, NULL); item->refine = atoi(data);
+ Sql_GetData(mail_handle,13, &data, NULL); item->attribute = atoi(data);
+ Sql_GetData(mail_handle,14, &data, NULL); item->identify = atoi(data);
+
+ for (j = 0; j < MAX_SLOTS; j++)
+ {
+ Sql_GetData(mail_handle, 15 + j, &data, NULL);
+ item->card[j] = atoi(data);
+ }
+ }
+
+ if ( SQL_SUCCESS == Sql_NextRow(mail_handle) )
+ md->satured = 1; // New Mails cannot arrive
+ else
+ md->satured = 0;
+
+ md->amount = i;
+ md->changed = 0;
+ Sql_FreeResult(mail_handle);
+
+ md->unchecked = 0;
+ md->unreaded = 0;
+ for (i = 0; i < md->amount; i++)
+ {
+ msg = &md->msg[i];
+ if (!msg->read)
+ {
+ if ( SQL_ERROR == Sql_Query(mail_handle, "UPDATE `%s` SET `read_flag` = '1' WHERE `id` = '%d'", mail_db, msg->id) )
+ Sql_ShowDebug(mail_handle);
+
+ md->unchecked++;
+ }
+ else if ( msg->read == 1 )
+ md->unreaded++;
+
+ msg->read = (msg->read < 2)?0:1;
+ }
+
+ ShowInfo("mail load complete from DB - id: %d (total: %d)\n", char_id, md->amount);
+ return 1;
+}
+
+int mail_savemessage(struct mail_message *msg)
+{
+ StringBuf buf;
+ int j;
+ char esc_send_name[NAME_LENGTH*2+1], esc_dest_name[NAME_LENGTH*2+1];
+ char esc_title[MAIL_TITLE_LENGTH*2+1], esc_body[MAIL_BODY_LENGTH*2+1];
+
+ if (!msg)
+ return 0;
+
+ Sql_EscapeStringLen(mail_handle, esc_send_name, msg->send_name, strnlen(msg->send_name, NAME_LENGTH));
+ Sql_EscapeStringLen(mail_handle, esc_dest_name, msg->dest_name, strnlen(msg->dest_name, NAME_LENGTH));
+ Sql_EscapeStringLen(mail_handle, esc_title, msg->title, strnlen(msg->title, MAIL_TITLE_LENGTH));
+ Sql_EscapeStringLen(mail_handle, esc_body, msg->body, strnlen(msg->body, MAIL_BODY_LENGTH));
+
+ StringBuf_Init(&buf);
+ StringBuf_Printf(&buf, "INSERT INTO `%s` (`send_name`, `send_id`, `dest_name`, `dest_id`, `title`, `message`, `time`, `read_flag`, `zeny`, `amount`, `nameid`, `refine`, `attribute`, `identify`", mail_db);
+ for (j = 0; j < MAX_SLOTS; j++)
+ StringBuf_Printf(&buf, ", `card%d`", j);
+ StringBuf_Printf(&buf, ") VALUES ('%s', '%d', '%s', '%d', '%s', '%s', '%d', '0', '%d', '%d', '%d', '%d', '%d', '%d'",
+ esc_send_name, msg->send_id, esc_dest_name, msg->dest_id, esc_title, esc_body, msg->timestamp, msg->zeny, msg->item.amount, msg->item.nameid, msg->item.refine, msg->item.attribute, msg->item.identify);
+ for (j = 0; j < MAX_SLOTS; j++)
+ StringBuf_Printf(&buf, ", '%d'", msg->item.card[j]);
+ StringBuf_AppendStr(&buf, ")");
+
+ if( SQL_ERROR == Sql_QueryStr(mail_handle, StringBuf_Value(&buf)) )
+ {
+ Sql_ShowDebug(mail_handle);
+ j = 0;
+ }
+ else
+ j = (int)Sql_LastInsertId(mail_handle);
+
+ StringBuf_Destroy(&buf);
+
+ return j;
+}
+
+int mail_loadmessage(int char_id, int mail_id, struct mail_message *message, short flag)
+{
+ char *data;
+ struct item *item;
+ int j = 0;
+ StringBuf buf;
+
+ StringBuf_Init(&buf);
+ StringBuf_AppendStr(&buf, "SELECT `id`,`send_name`,`send_id`,`dest_name`,`dest_id`,`title`,`message`,`time`,`read_flag`,"
+ "`zeny`,`amount`,`nameid`,`refine`,`attribute`,`identify`");
+ for (j = 0; j < MAX_SLOTS; j++)
+ StringBuf_Printf(&buf, ",`card%d`", j);
+ StringBuf_Printf(&buf, " FROM `%s` WHERE `dest_id` = '%d' AND `id` = '%d'", mail_db, char_id, mail_id);
+
+ if( SQL_ERROR == Sql_Query(mail_handle, StringBuf_Value(&buf)) )
+ Sql_ShowDebug(mail_handle);
+ else if( Sql_NumRows(mail_handle) == 0 )
+ ShowWarning("Char %d trying to read an invalid mail.\n", char_id);
+ else
+ {
+ Sql_NextRow(mail_handle);
+
+ Sql_GetData(mail_handle, 0, &data, NULL); message->id = atoi(data);
+ Sql_GetData(mail_handle, 1, &data, NULL); safestrncpy(message->send_name, data, NAME_LENGTH);
+ Sql_GetData(mail_handle, 2, &data, NULL); message->send_id = atoi(data);
+ Sql_GetData(mail_handle, 3, &data, NULL); safestrncpy(message->dest_name, data, NAME_LENGTH);
+ Sql_GetData(mail_handle, 4, &data, NULL); message->dest_id = atoi(data);
+ Sql_GetData(mail_handle, 5, &data, NULL); safestrncpy(message->title, data, MAIL_TITLE_LENGTH);
+ Sql_GetData(mail_handle, 6, &data, NULL); safestrncpy(message->body, data, MAIL_BODY_LENGTH);
+ Sql_GetData(mail_handle, 7, &data, NULL); message->timestamp = atoi(data);
+ Sql_GetData(mail_handle, 8, &data, NULL); message->read = atoi(data);
+ Sql_GetData(mail_handle, 9, &data, NULL); message->zeny = atoi(data);
+ item = &message->item;
+ Sql_GetData(mail_handle,10, &data, NULL); item->amount = (short)atoi(data);
+ Sql_GetData(mail_handle,11, &data, NULL); item->nameid = atoi(data);
+ Sql_GetData(mail_handle,12, &data, NULL); item->refine = atoi(data);
+ Sql_GetData(mail_handle,13, &data, NULL); item->attribute = atoi(data);
+ Sql_GetData(mail_handle,14, &data, NULL); item->identify = atoi(data);
+ for (j = 0; j < MAX_SLOTS; j++)
+ {
+ Sql_GetData(mail_handle,15 + j, &data, NULL);
+ item->card[j] = atoi(data);
+ }
+
+ j = 1;
+ }
+
+ StringBuf_Destroy(&buf);
+ Sql_FreeResult(mail_handle);
+
+ if (message->read == 1)
+ {
+ message->read = 0;
+ if (flag)
+ if ( SQL_ERROR == Sql_Query(mail_handle, "UPDATE `%s` SET `read_flag` = '2' WHERE `id` = '%d'", mail_db, message->id) )
+ Sql_ShowDebug(mail_handle);
+ }
+ else
+ message->read = 1;
+
+ return j;
+}
+
+/*==========================================
+ * Client Inbox Request
+ *------------------------------------------*/
+int mapif_Mail_sendinbox(int fd, int char_id, unsigned char flag)
+{
+ WFIFOHEAD(fd, sizeof(struct mail_data) + 9);
+ mail_fromsql(char_id, mail_data_pt);
+ WFIFOW(fd,0) = 0x3848;
+ WFIFOW(fd,2) = sizeof(struct mail_data) + 9;
+ WFIFOL(fd,4) = char_id;
+ WFIFOB(fd,8) = flag;
+ memcpy(WFIFOP(fd,9),mail_data_pt,sizeof(struct mail_data));
+ WFIFOSET(fd,WFIFOW(fd,2));
+
+ return 0;
+}
+
+int mapif_parse_Mail_requestinbox(int fd)
+{
+ RFIFOHEAD(fd);
+ mapif_Mail_sendinbox(fd, RFIFOL(fd,2), RFIFOB(fd,6));
+
+ return 0;
+}
+
+/*==========================================
+ * Mail Readed Mark
+ *------------------------------------------*/
+int mapif_parse_Mail_read(int fd)
+{
+ int mail_id;
+ RFIFOHEAD(fd);
+
+ mail_id = RFIFOL(fd,2);
+ if( SQL_ERROR == Sql_Query(mail_handle, "UPDATE `%s` SET `read_flag` = '2' WHERE `id` = '%d'", mail_db, mail_id) )
+ Sql_ShowDebug(mail_handle);
+
+ return 0;
+}
+
+/*==========================================
+ * Client Attachment Request
+ *------------------------------------------*/
+int mail_DeleteAttach(int mail_id)
+{
+ StringBuf buf;
+ int i;
+
+ StringBuf_Init(&buf);
+ StringBuf_Printf(&buf, "UPDATE `%s` SET `zeny` = '0', `nameid` = '0', `amount` = '0', `refine` = '0', `attribute` = '0', `identify` = '0'", mail_db);
+ for (i = 0; i < MAX_SLOTS; i++)
+ StringBuf_Printf(&buf, ", `card%d` = '0'", i);
+ StringBuf_Printf(&buf, " WHERE `id` = '%d'", mail_id);
+
+ if( SQL_ERROR == Sql_Query(mail_handle, StringBuf_Value(&buf)) )
+ {
+ Sql_ShowDebug(mail_handle);
+ StringBuf_Destroy(&buf);
+
+ return 0;
+ }
+
+ StringBuf_Destroy(&buf);
+ return 1;
+}
+
+int mapif_Mail_getattach(int fd, int char_id, int mail_id)
+{
+ struct mail_message *message = (struct mail_message*)aCalloc(sizeof(struct mail_message), 1);
+
+ if( mail_loadmessage(char_id, mail_id, message, 0) )
+ {
+ if( (message->item.nameid < 1 || message->item.amount < 1) && message->zeny < 1 )
+ {
+ aFree(message);
+ return 0; // No Attachment
+ }
+
+ if( mail_DeleteAttach(mail_id) )
+ {
+ WFIFOHEAD(fd, sizeof(struct item) + 12);
+ WFIFOW(fd,0) = 0x384a;
+ WFIFOW(fd,2) = sizeof(struct item) + 12;
+ WFIFOL(fd,4) = char_id;
+ WFIFOL(fd,8) = (message->zeny > 0)?message->zeny:0;
+ memcpy(WFIFOP(fd,12), &message->item, sizeof(struct item));
+ WFIFOSET(fd,WFIFOW(fd,2));
+ }
+ }
+
+ aFree(message);
+ return 0;
+}
+
+int mapif_parse_Mail_getattach(int fd)
+{
+ RFIFOHEAD(fd);
+ mapif_Mail_getattach(fd, RFIFOL(fd,2), RFIFOL(fd,6));
+ return 0;
+}
+
+/*==========================================
+ * Delete Mail
+ *------------------------------------------*/
+int mapif_Mail_delete(int fd, int char_id, int mail_id)
+{
+ short flag = 0;
+
+ if ( SQL_ERROR == Sql_Query(mail_handle, "DELETE FROM `%s` WHERE `id` = '%d'", mail_db, mail_id) )
+ {
+ Sql_ShowDebug(mail_handle);
+ flag = 1;
+ }
+
+ WFIFOHEAD(fd,11);
+ WFIFOW(fd,0) = 0x384b;
+ WFIFOL(fd,2) = char_id;
+ WFIFOL(fd,6) = mail_id;
+ WFIFOW(fd,10) = flag;
+ WFIFOSET(fd,12);
+
+ return 0;
+}
+
+int mapif_parse_Mail_delete(int fd)
+{
+ RFIFOHEAD(fd);
+ mapif_Mail_delete(fd, RFIFOL(fd,2), RFIFOL(fd,6));
+ return 0;
+}
+/*==========================================
+ * Return Mail
+ *------------------------------------------*/
+int mapif_Mail_return(int fd, int char_id, int mail_id)
+{
+ struct mail_message *msg = (struct mail_message*)aCalloc(sizeof(struct mail_message), 1);
+ int new_mail = 0;
+
+ if( mail_loadmessage(char_id, mail_id, msg, 0) )
+ {
+ if( SQL_ERROR == Sql_Query(mail_handle, "DELETE FROM `%s` WHERE `id` = '%d'", mail_db, mail_id) )
+ Sql_ShowDebug(mail_handle);
+ else
+ {
+ char temp_[MAIL_TITLE_LENGTH];
+
+ swap(msg->send_id, msg->dest_id);
+ safestrncpy(temp_, msg->send_name, NAME_LENGTH);
+ safestrncpy(msg->send_name, msg->dest_name, NAME_LENGTH);
+ safestrncpy(msg->dest_name, temp_, NAME_LENGTH);
+
+ snprintf(temp_, MAIL_TITLE_LENGTH, "RE:%s", msg->title);
+ safestrncpy(msg->title, temp_, MAIL_TITLE_LENGTH);
+ msg->timestamp = (unsigned int)calc_times();
+
+ new_mail = mail_savemessage(msg);
+ }
+ }
+
+ aFree(msg);
+
+ WFIFOHEAD(fd,14);
+ WFIFOW(fd,0) = 0x384c;
+ WFIFOL(fd,2) = char_id;
+ WFIFOL(fd,6) = mail_id;
+ WFIFOL(fd,10) = new_mail;
+ WFIFOSET(fd,14);
+
+ return 0;
+}
+
+int mapif_parse_Mail_return(int fd)
+{
+ RFIFOHEAD(fd);
+ mapif_Mail_return(fd, RFIFOL(fd,2), RFIFOL(fd,6));
+ return 0;
+}
+
+int mapif_Mail_send(int fd, struct mail_message *msg)
+{
+ int len = strlen(msg->title) + 16;
+
+ WFIFOHEAD(fd,len);
+ WFIFOW(fd,0) = 0x384d;
+ WFIFOW(fd,2) = len;
+ WFIFOL(fd,4) = msg->send_id;
+ WFIFOL(fd,8) = msg->id;
+ WFIFOL(fd,12) = msg->dest_id;
+ memcpy(WFIFOP(fd,16), msg->title, strlen(msg->title));
+ WFIFOSET(fd,len);
+
+ return 0;
+}
+
+int mapif_parse_Mail_send(int fd)
+{
+ struct mail_message *msg;
+ int mail_id = 0, account_id = 0;
+
+ if(RFIFOW(fd,2) != 8 + sizeof(struct mail_message))
+ return 0;
+
+ msg = (struct mail_message*)aCalloc(sizeof(struct mail_message), 1);
+ memcpy(msg, RFIFOP(fd,8), sizeof(struct mail_message));
+
+ account_id = RFIFOL(fd,4);
+
+ if( !msg->dest_id )
+ {
+ // Try to find the Dest Char by Name
+ char esc_name[NAME_LENGTH*2+1];
+
+ Sql_EscapeStringLen(sql_handle, esc_name, msg->dest_name, strnlen(msg->dest_name, NAME_LENGTH));
+ if ( SQL_ERROR == Sql_Query(sql_handle, "SELECT `account_id`, `char_id` FROM `%s` WHERE `name` = '%s'", char_db, esc_name) )
+ Sql_ShowDebug(sql_handle);
+ else if ( Sql_NumRows(sql_handle) > 0 )
+ {
+ char *data;
+ Sql_NextRow(sql_handle);
+ Sql_GetData(sql_handle, 0, &data, NULL);
+ if (atoi(data) != account_id)
+ { // Cannot sends mail to char in the same account
+ Sql_GetData(sql_handle, 1, &data, NULL);
+ msg->dest_id = atoi(data);
+ }
+ }
+ Sql_FreeResult(sql_handle);
+ }
+
+ if( msg->dest_id > 0 )
+ mail_id = mail_savemessage(msg);
+
+ msg->id = mail_id;
+ mapif_Mail_send(fd, msg);
+
+ aFree(msg);
+ return 0;
+}
+
+/*==========================================
+ * Packets From Map Server
+ *------------------------------------------*/
+int inter_mail_parse_frommap(int fd)
+{
+ switch(RFIFOW(fd,0))
+ {
+ case 0x3048: mapif_parse_Mail_requestinbox(fd); break;
+ case 0x3049: mapif_parse_Mail_read(fd); break;
+ case 0x304a: mapif_parse_Mail_getattach(fd); break;
+ case 0x304b: mapif_parse_Mail_delete(fd); break;
+ case 0x304c: mapif_parse_Mail_return(fd); break;
+ case 0x304d: mapif_parse_Mail_send(fd); break;
+ default:
+ return 0;
+ }
+ return 1;
+}
+
+int inter_mail_sql_init(void)
+{
+ mail_data_pt = (struct mail_data*)aCalloc(sizeof(struct mail_data), 1);
+ return 1;
+}
+
+void inter_mail_sql_final(void)
+{
+ if (mail_data_pt) aFree(mail_data_pt);
+ return;
+}
diff --git a/src/char_sql/int_mail.h b/src/char_sql/int_mail.h
new file mode 100644
index 000000000..4561e1736
--- /dev/null
+++ b/src/char_sql/int_mail.h
@@ -0,0 +1,12 @@
+// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
+// For more information, see LICENCE in the main folder
+
+#ifndef _INT_MAIL_SQL_H_
+#define _INT_MAIL_SQL_H_
+
+int inter_mail_parse_frommap(int fd);
+
+int inter_mail_sql_init(void);
+void inter_mail_sql_final(void);
+
+#endif /* _INT_MAIL_SQL_H_ */
diff --git a/src/char_sql/inter.c b/src/char_sql/inter.c
index ab03e102b..e37c258a1 100644
--- a/src/char_sql/inter.c
+++ b/src/char_sql/inter.c
@@ -15,6 +15,7 @@
#include "int_storage.h"
#include "int_pet.h"
#include "int_homun.h"
+#include "int_mail.h"
#include <stdio.h>
#include <string.h>
@@ -26,6 +27,7 @@
Sql* sql_handle = NULL;
Sql* lsql_handle = NULL;
+Sql* mail_handle = NULL;
int char_server_port = 3306;
char char_server_ip[32] = "127.0.0.1";
@@ -40,6 +42,12 @@ char login_server_id[32] = "ragnarok";
char login_server_pw[32] = "ragnarok";
char login_server_db[32] = "ragnarok";
+int mail_server_port = 3306;
+char mail_server_ip[32] = "127.0.0.1";
+char mail_server_id[32] = "ragnarok";
+char mail_server_pw[32] = "ragnarok";
+char mail_server_db[32] = "ragnarok";
+
#ifndef TXT_SQL_CONVERT
static struct accreg *accreg_pt;
@@ -53,7 +61,7 @@ int inter_send_packet_length[] = {
-1, 7, 0, 0, 0, 0, 0, 0, -1,11, 0, 0, 0, 0, 0, 0, // 3810-
35,-1,11,15, 34,29, 7,-1, 0, 0, 0, 0, 0, 0, 0, 0, // 3820-
10,-1,15, 0, 79,19, 7,-1, 0,-1,-1,-1, 14,67,186,-1, // 3830-
- 9, 9,-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 3840-
+ 9, 9,-1, 0, 0, 0, 0, 0, -1, 0,-1,12, 14,-1, 0, 0, // 3840-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 3850-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 3860-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 3870-
@@ -65,7 +73,7 @@ int inter_recv_packet_length[] = {
6,-1, 0, 0, 0, 0, 0, 0, 10,-1, 0, 0, 0, 0, 0, 0, // 3010-
-1, 6,-1,14, 14,19, 6,-1, 14,14, 0, 0, 0, 0, 0, 0, // 3020-
-1, 6,-1,-1, 55,19, 6,-1, 14,-1,-1,-1, 14,19,186,-1, // 3030-
- 5, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 3040-
+ 5, 9, 0, 0, 0, 0, 0, 0, 7, 6,10,10, 10,-1, 0, 0, // 3040-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 3050-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 3060-
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 3070-
@@ -270,6 +278,28 @@ static int inter_config_read(const char* cfgName)
strcpy(login_server_db, w2);
ShowStatus ("set login_server_db : %s\n", w2);
}
+ // MAIL SYSTEM
+ else
+ if(!strcmpi(w1,"mail_server_ip")) {
+ strcpy(mail_server_ip, w2);
+ ShowStatus ("set mail_server_ip : %s\n", w2);
+ } else
+ if(!strcmpi(w1,"mail_server_port")) {
+ mail_server_port = atoi(w2);
+ ShowStatus ("set mail_server_port : %s\n", w2);
+ } else
+ if(!strcmpi(w1,"mail_server_id")) {
+ strcpy(mail_server_id, w2);
+ ShowStatus ("set mail_server_id : %s\n", w2);
+ } else
+ if(!strcmpi(w1,"mail_server_pw")) {
+ strcpy(mail_server_pw, w2);
+ ShowStatus ("set mail_server_pw : %s\n", w2);
+ } else
+ if(!strcmpi(w1,"mail_server_db")) {
+ strcpy(mail_server_db, w2);
+ ShowStatus ("set mail_server_db : %s\n", w2);
+ }
#ifndef TXT_SQL_CONVERT
else if(!strcmpi(w1,"party_share_level"))
party_share_level = atoi(w2);
@@ -314,6 +344,7 @@ int inter_sql_ping(int tid, unsigned int tick, int id, int data)
{
ShowInfo("Pinging SQL server to keep connection alive...\n");
Sql_Ping(sql_handle);
+ Sql_Ping(mail_handle);
if( char_gm_read )
Sql_Ping(lsql_handle);
return 0;
@@ -358,6 +389,16 @@ int inter_init_sql(const char *file)
Sql_Free(sql_handle);
exit(EXIT_FAILURE);
}
+ // MAIL SYSTEM
+ mail_handle = Sql_Malloc();
+ ShowInfo("Connect Mail DB server.... (Character Server)\n");
+ if ( SQL_ERROR == Sql_Connect(mail_handle, mail_server_id, mail_server_pw, mail_server_ip, (uint16)mail_server_port, mail_server_db) )
+ {
+ Sql_ShowDebug(mail_handle);
+ Sql_Free(mail_handle);
+ Sql_Free(sql_handle);
+ exit(EXIT_FAILURE);
+ }
#ifndef TXT_SQL_CONVERT
else if (inter_sql_test()) {
ShowStatus("Connect Success! (Character Server)\n");
@@ -370,6 +411,7 @@ int inter_init_sql(const char *file)
{
Sql_ShowDebug(lsql_handle);
Sql_Free(lsql_handle);
+ Sql_Free(mail_handle);
Sql_Free(sql_handle);
exit(EXIT_FAILURE);
}
@@ -396,6 +438,7 @@ int inter_init_sql(const char *file)
inter_pet_sql_init();
inter_homunculus_sql_init(); // albator
inter_accreg_sql_init();
+ inter_mail_sql_init();
sql_ping_init();
#endif //TXT_SQL_CONVERT
@@ -429,6 +472,7 @@ int inter_sql_test (void)
ShowSQL ("Field `%s` not be found in `%s`. Consider updating your database!\n", fields[i], char_db);
if( lsql_handle )
Sql_Free(lsql_handle);
+ Sql_Free(mail_handle);
Sql_Free(sql_handle);
exit(EXIT_FAILURE);
}
@@ -863,6 +907,7 @@ int inter_parse_frommap(int fd)
|| inter_storage_parse_frommap(fd)
|| inter_pet_parse_frommap(fd)
|| inter_homunculus_parse_frommap(fd)
+ || inter_mail_parse_frommap(fd)
)
break;
else
diff --git a/src/char_sql/inter.h b/src/char_sql/inter.h
index c79290c80..3f4999e5a 100644
--- a/src/char_sql/inter.h
+++ b/src/char_sql/inter.h
@@ -26,6 +26,7 @@ extern char inter_log_filename[1024];
extern Sql* sql_handle;
extern Sql* lsql_handle;
+extern Sql* mail_handle;
extern int char_server_port;
extern char char_server_ip[32];
@@ -39,6 +40,12 @@ extern char login_db_server_id[32];
extern char login_db_server_pw[32];
extern char login_db_server_db[32];
+extern int mail_server_port;
+extern char mail_server_ip[32];
+extern char mail_server_id[32];
+extern char mail_server_pw[32];
+extern char mail_server_db[32];
+
extern char main_chat_nick[16];
int inter_accreg_tosql(int account_id, int char_id, struct accreg *reg, int type);