diff options
Diffstat (limited to 'protocols/Gadu-Gadu/ownerinfo.c')
-rw-r--r-- | protocols/Gadu-Gadu/ownerinfo.c | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/protocols/Gadu-Gadu/ownerinfo.c b/protocols/Gadu-Gadu/ownerinfo.c new file mode 100644 index 0000000000..aeeb7f1a9b --- /dev/null +++ b/protocols/Gadu-Gadu/ownerinfo.c @@ -0,0 +1,88 @@ +////////////////////////////////////////////////////////////////////////////////
+// Gadu-Gadu Plugin for Miranda IM
+//
+// Copyright (c) 2003-2006 Adam Strzelecki <ono+miranda@java.pl>
+//
+// 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+////////////////////////////////////////////////////////////////////////////////
+
+#include "gg.h"
+
+//////////////////////////////////////////////////////////
+// remind password
+
+typedef struct
+{
+ uin_t uin;
+ const char *email;
+} GG_REMIND_PASS;
+
+void __cdecl gg_remindpasswordthread(GGPROTO *gg, void *param)
+{
+ // Connection handle
+ struct gg_http *h;
+ GG_REMIND_PASS *rp = (GG_REMIND_PASS *)param;
+ GGTOKEN token;
+
+#ifdef DEBUGMODE
+ gg_netlog(gg, "gg_remindpasswordthread(): Starting.");
+#endif
+ if(!rp || !rp->email || !rp->uin || !strlen(rp->email))
+ {
+ if(rp) free(rp);
+ return;
+ }
+
+ // Get token
+ if(!gg_gettoken(gg, &token)) return;
+
+ if (!(h = gg_remind_passwd3(rp->uin, rp->email, token.id, token.val, 0)))
+ {
+ char error[128];
+ mir_snprintf(error, sizeof(error), Translate("Password could not be reminded because of error:\n\t%s"), strerror(errno));
+ MessageBox(
+ NULL,
+ error,
+ GG_PROTONAME,
+ MB_OK | MB_ICONSTOP
+ );
+ gg_netlog(gg, "gg_remindpasswordthread(): Password could not be reminded because of \"%s\".", strerror(errno));
+ }
+ else
+ {
+ gg_pubdir_free(h);
+ gg_netlog(gg, "gg_remindpasswordthread(): Password remind successful.");
+ MessageBox(
+ NULL,
+ Translate("Password was sent to your e-mail."),
+ GG_PROTONAME,
+ MB_OK | MB_ICONINFORMATION
+ );
+ }
+
+#ifdef DEBUGMODE
+ gg_netlog(gg, "gg_remindpasswordthread(): End.");
+#endif
+ if(rp) free(rp);
+}
+
+void gg_remindpassword(GGPROTO *gg, uin_t uin, const char *email)
+{
+ GG_REMIND_PASS *rp = malloc(sizeof(GG_REMIND_PASS));
+
+ rp->uin = uin;
+ rp->email = email;
+ gg_forkthread(gg, gg_remindpasswordthread, rp);
+}
|