2012-07-13 16:27:12 -04:00
/* HexChat
* Copyright ( c ) 2010 - 2012 Berke Viktor .
2011-02-28 12:59:32 -05:00
*
2011-11-28 20:04:08 -05:00
* Permission is hereby granted , free of charge , to any person obtaining a copy
* of this software and associated documentation files ( the " Software " ) , to deal
* in the Software without restriction , including without limitation the rights
* to use , copy , modify , merge , publish , distribute , sublicense , and / or sell
* copies of the Software , and to permit persons to whom the Software is
* furnished to do so , subject to the following conditions :
2011-08-11 02:12:35 -04:00
*
2011-11-28 20:04:08 -05:00
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software .
*
* THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER
* LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM ,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE .
2011-02-28 12:59:32 -05:00
*/
# include <windows.h>
# include <wininet.h>
2012-11-03 23:22:22 -04:00
# include <glib.h>
2012-10-24 15:33:02 -04:00
# include "hexchat-plugin.h"
2011-02-28 12:59:32 -05:00
2013-07-25 19:54:25 -04:00
# define DEFAULT_DELAY 30 /* 30 seconds */
2012-10-26 07:00:09 -04:00
# define DEFAULT_FREQ 360 /* 6 hours */
2013-07-25 19:54:25 -04:00
# define DOWNLOAD_URL "http: //dl.hexchat.net/hexchat"
2012-10-26 07:00:09 -04:00
2012-10-30 03:42:48 -04:00
static hexchat_plugin * ph ; /* plugin handle */
2012-10-26 07:00:09 -04:00
static char name [ ] = " Update Checker " ;
static char desc [ ] = " Check for HexChat updates automatically " ;
static char version [ ] = " 4.0 " ;
2012-12-17 20:24:09 -05:00
static const char upd_help [ ] = " Update Checker Usage: \n /UPDCHK, check for HexChat updates \n /UPDCHK SET delay|freq, set startup delay or check frequency \n " ;
2011-02-28 12:59:32 -05:00
static char *
check_version ( )
{
2012-02-04 11:41:02 -05:00
HINTERNET hOpen , hConnect , hResource ;
2012-02-08 15:52:27 -05:00
hOpen = InternetOpen ( TEXT ( " Update Checker " ) ,
2012-02-04 11:41:02 -05:00
INTERNET_OPEN_TYPE_PRECONFIG ,
NULL ,
NULL ,
0 ) ;
if ( ! hOpen )
{
return " Unknown " ;
}
hConnect = InternetConnect ( hOpen ,
2012-07-12 12:39:52 -04:00
TEXT ( " raw.github.com " ) ,
INTERNET_DEFAULT_HTTPS_PORT ,
2012-02-04 11:41:02 -05:00
NULL ,
NULL ,
INTERNET_SERVICE_HTTP ,
0 ,
0 ) ;
if ( ! hConnect )
{
InternetCloseHandle ( hOpen ) ;
return " Unknown " ;
}
2013-04-02 00:15:46 -04:00
hResource = HttpOpenRequest ( hConnect ,
TEXT ( " GET " ) ,
TEXT ( " /hexchat/hexchat/master/win32/version.txt " ) ,
TEXT ( " HTTP/1.0 " ) ,
NULL ,
NULL ,
INTERNET_FLAG_SECURE | INTERNET_FLAG_NO_CACHE_WRITE | INTERNET_FLAG_RELOAD | INTERNET_FLAG_NO_AUTH ,
0 ) ;
2012-02-04 11:41:02 -05:00
if ( ! hResource )
{
InternetCloseHandle ( hConnect ) ;
InternetCloseHandle ( hOpen ) ;
return " Unknown " ;
}
else
{
2012-02-08 15:52:27 -05:00
static char buffer [ 1024 ] ;
2013-07-25 19:54:25 -04:00
char infobuffer [ 32 ] ;
int statuscode ;
2012-02-08 15:52:27 -05:00
DWORD dwRead ;
2013-07-25 19:54:25 -04:00
DWORD infolen = sizeof ( infobuffer ) ;
2012-02-08 15:52:27 -05:00
HttpAddRequestHeaders ( hResource , TEXT ( " Connection: close \r \n " ) , - 1L , HTTP_ADDREQ_FLAG_ADD ) ; /* workaround for GC bug */
2012-02-04 11:41:02 -05:00
HttpSendRequest ( hResource , NULL , 0 , NULL , 0 ) ;
while ( InternetReadFile ( hResource , buffer , 1023 , & dwRead ) )
{
if ( dwRead = = 0 )
{
break ;
}
buffer [ dwRead ] = 0 ;
}
2013-07-25 19:54:25 -04:00
HttpQueryInfo ( hResource ,
HTTP_QUERY_STATUS_CODE ,
& infobuffer ,
& infolen ,
NULL ) ;
2012-02-04 11:41:02 -05:00
InternetCloseHandle ( hResource ) ;
InternetCloseHandle ( hConnect ) ;
InternetCloseHandle ( hOpen ) ;
2013-07-25 19:54:25 -04:00
statuscode = atoi ( infobuffer ) ;
if ( statuscode = = 200 )
2013-01-17 18:57:02 -05:00
return buffer ;
else
return " Unknown " ;
2012-02-04 11:41:02 -05:00
}
2011-02-28 12:59:32 -05:00
}
2011-11-25 15:44:08 -05:00
static int
2012-10-26 07:00:09 -04:00
print_version ( char * word [ ] , char * word_eol [ ] , void * userdata )
2011-02-28 12:59:32 -05:00
{
2012-10-26 07:32:08 -04:00
char * version ;
int prevbuf ;
int convbuf ;
2011-02-28 12:59:32 -05:00
2012-10-26 07:32:08 -04:00
if ( ! g_ascii_strcasecmp ( " HELP " , word [ 2 ] ) )
2011-02-28 12:59:32 -05:00
{
2012-10-30 03:42:48 -04:00
hexchat_printf ( ph , upd_help ) ;
2012-10-30 05:42:37 -04:00
return HEXCHAT_EAT_HEXCHAT ;
2011-02-28 12:59:32 -05:00
}
2012-10-26 07:32:08 -04:00
else if ( ! g_ascii_strcasecmp ( " SET " , word [ 2 ] ) )
2011-02-28 12:59:32 -05:00
{
2012-10-26 07:32:08 -04:00
if ( ! g_ascii_strcasecmp ( " " , word_eol [ 4 ] ) )
{
2012-10-30 03:42:48 -04:00
hexchat_printf ( ph , " %s \t Enter a value! \n " , name ) ;
2012-10-30 05:42:37 -04:00
return HEXCHAT_EAT_HEXCHAT ;
2012-10-26 07:32:08 -04:00
}
if ( ! g_ascii_strcasecmp ( " delay " , word [ 3 ] ) )
{
convbuf = atoi ( word [ 4 ] ) ; /* don't use word_eol, numbers must not contain spaces */
if ( convbuf > 0 & & convbuf < INT_MAX )
{
2012-10-30 03:42:48 -04:00
prevbuf = hexchat_pluginpref_get_int ( ph , " delay " ) ;
hexchat_pluginpref_set_int ( ph , " delay " , convbuf ) ;
hexchat_printf ( ph , " %s \t Update check startup delay is set to %d seconds (from %d). \n " , name , convbuf , prevbuf ) ;
2012-10-26 07:32:08 -04:00
}
else
{
2012-10-30 03:42:48 -04:00
hexchat_printf ( ph , " %s \t Invalid input! \n " , name ) ;
2012-10-26 07:32:08 -04:00
}
}
else if ( ! g_ascii_strcasecmp ( " freq " , word [ 3 ] ) )
{
convbuf = atoi ( word [ 4 ] ) ; /* don't use word_eol, numbers must not contain spaces */
if ( convbuf > 0 & & convbuf < INT_MAX )
{
2012-10-30 03:42:48 -04:00
prevbuf = hexchat_pluginpref_get_int ( ph , " freq " ) ;
hexchat_pluginpref_set_int ( ph , " freq " , convbuf ) ;
hexchat_printf ( ph , " %s \t Update check frequency is set to %d minutes (from %d). \n " , name , convbuf , prevbuf ) ;
2012-10-26 07:32:08 -04:00
}
else
{
2012-10-30 03:42:48 -04:00
hexchat_printf ( ph , " %s \t Invalid input! \n " , name ) ;
2012-10-26 07:32:08 -04:00
}
}
else
{
2012-10-30 03:42:48 -04:00
hexchat_printf ( ph , " %s \t Invalid variable name! Use 'delay' or 'freq'! \n " , name ) ;
2012-10-30 05:42:37 -04:00
return HEXCHAT_EAT_HEXCHAT ;
2012-10-26 07:32:08 -04:00
}
2012-10-30 05:42:37 -04:00
return HEXCHAT_EAT_HEXCHAT ;
2011-02-28 12:59:32 -05:00
}
2012-10-26 07:32:08 -04:00
else if ( ! g_ascii_strcasecmp ( " " , word [ 2 ] ) )
2011-02-28 12:59:32 -05:00
{
2012-10-26 07:32:08 -04:00
version = check_version ( ) ;
2012-10-30 03:42:48 -04:00
if ( strcmp ( version , hexchat_get_info ( ph , " version " ) ) = = 0 )
2012-10-26 07:32:08 -04:00
{
2012-10-30 03:42:48 -04:00
hexchat_printf ( ph , " %s \t You have the latest version of HexChat installed! \n " , name ) ;
2012-10-26 07:32:08 -04:00
}
2012-12-22 23:42:49 -05:00
else if ( strcmp ( version , " Unknown " ) = = 0 )
2012-10-26 07:32:08 -04:00
{
2012-10-30 03:42:48 -04:00
hexchat_printf ( ph , " %s \t Unable to check for HexChat updates! \n " , name ) ;
2012-10-26 07:32:08 -04:00
}
else
{
2011-11-22 20:57:45 -05:00
# ifdef _WIN64 /* use this approach, the wProcessorArchitecture method always returns 0 (=x86) for some reason */
2013-07-25 19:54:25 -04:00
hexchat_printf ( ph , " %s: \t A HexChat update is available! You can download it from here: \n %s/HexChat%%20%s%%20x64.exe \n " , name , DOWNLOAD_URL , version ) ;
2011-11-22 20:57:45 -05:00
# else
2013-07-25 19:54:25 -04:00
hexchat_printf ( ph , " %s: \t A HexChat update is available! You can download it from here: \n %s/HexChat%%20%s%%20x86.exe \n " , name , DOWNLOAD_URL , version ) ;
2011-11-22 20:57:45 -05:00
# endif
2012-10-26 07:32:08 -04:00
}
2012-10-30 05:42:37 -04:00
return HEXCHAT_EAT_HEXCHAT ;
2012-10-26 07:32:08 -04:00
}
else
{
2012-10-30 03:42:48 -04:00
hexchat_printf ( ph , upd_help ) ;
2012-10-30 05:42:37 -04:00
return HEXCHAT_EAT_HEXCHAT ;
2011-02-28 12:59:32 -05:00
}
}
2011-11-25 15:44:08 -05:00
static int
print_version_quiet ( void * userdata )
{
char * version = check_version ( ) ;
/* if it's not the current version AND not network error */
2012-10-30 03:42:48 -04:00
if ( ! ( strcmp ( version , hexchat_get_info ( ph , " version " ) ) = = 0 ) & & ! ( strcmp ( version , " Unknown " ) = = 0 ) )
2011-11-25 15:44:08 -05:00
{
# ifdef _WIN64 /* use this approach, the wProcessorArchitecture method always returns 0 (=x86) for plugins for some reason */
2013-07-25 19:54:25 -04:00
hexchat_printf ( ph , " %s \t A HexChat update is available! You can download it from here: \n %s/HexChat%%20%s%%20x64.exe \n " , name , DOWNLOAD_URL , version ) ;
2011-11-25 15:44:08 -05:00
# else
2013-07-25 19:54:25 -04:00
hexchat_printf ( ph , " %s \t A HexChat update is available! You can download it from here: \n %s/HexChat%%20%s%%20x86.exe \n " , name , DOWNLOAD_URL , version ) ;
2011-11-25 15:44:08 -05:00
# endif
/* print update url once, then stop the timer */
return 0 ;
}
/* keep checking */
return 1 ;
}
2012-10-26 07:00:09 -04:00
static int
delayed_check ( void * userdata )
{
2012-10-30 03:42:48 -04:00
int freq = hexchat_pluginpref_get_int ( ph , " freq " ) ;
2012-10-26 07:00:09 -04:00
/* only start the timer if there's no update available during startup */
if ( print_version_quiet ( NULL ) )
{
/* check for updates, every 6 hours by default */
2012-10-30 03:42:48 -04:00
hexchat_hook_timer ( ph , freq * 1000 * 60 , print_version_quiet , NULL ) ;
2012-10-26 07:00:09 -04:00
}
return 0 ; /* run delayed_check() only once */
}
2011-02-28 12:59:32 -05:00
int
2012-10-30 03:42:48 -04:00
hexchat_plugin_init ( hexchat_plugin * plugin_handle , char * * plugin_name , char * * plugin_desc , char * * plugin_version , char * arg )
2011-02-28 12:59:32 -05:00
{
2012-10-26 07:00:09 -04:00
int delay ;
2011-02-28 12:59:32 -05:00
ph = plugin_handle ;
2011-12-01 19:05:59 -05:00
* plugin_name = name ;
* plugin_desc = desc ;
* plugin_version = version ;
2011-02-28 12:59:32 -05:00
2012-10-26 07:00:09 -04:00
/* these are required for the very first run */
2012-10-30 03:42:48 -04:00
delay = hexchat_pluginpref_get_int ( ph , " delay " ) ;
2012-10-26 07:00:09 -04:00
if ( delay = = - 1 )
2011-11-25 15:44:08 -05:00
{
2012-10-26 07:00:09 -04:00
delay = DEFAULT_DELAY ;
2012-10-30 03:42:48 -04:00
hexchat_pluginpref_set_int ( ph , " delay " , DEFAULT_DELAY ) ;
2011-11-25 15:44:08 -05:00
}
2011-02-28 12:59:32 -05:00
2012-10-30 03:42:48 -04:00
if ( hexchat_pluginpref_get_int ( ph , " freq " ) = = - 1 )
2012-10-26 07:32:08 -04:00
{
2012-10-30 03:42:48 -04:00
hexchat_pluginpref_set_int ( ph , " freq " , DEFAULT_FREQ ) ;
2012-10-26 07:32:08 -04:00
}
2012-10-30 03:42:48 -04:00
hexchat_hook_command ( ph , " UPDCHK " , HEXCHAT_PRI_NORM , print_version , upd_help , NULL ) ;
hexchat_hook_timer ( ph , delay * 1000 , delayed_check , NULL ) ;
2013-04-14 04:14:17 -04:00
hexchat_command ( ph , " MENU -ishare \\ download.png ADD \" Help/Check for Updates \" \" UPDCHK \" " ) ;
2012-10-30 03:42:48 -04:00
hexchat_printf ( ph , " %s plugin loaded \n " , name ) ;
2012-10-26 07:00:09 -04:00
2011-02-28 12:59:32 -05:00
return 1 ; /* return 1 for success */
}
int
2012-10-30 03:42:48 -04:00
hexchat_plugin_deinit ( void )
2011-02-28 12:59:32 -05:00
{
2012-10-30 03:42:48 -04:00
hexchat_command ( ph , " MENU DEL \" Help/Check for updates \" " ) ;
hexchat_printf ( ph , " %s plugin unloaded \n " , name ) ;
2011-02-28 12:59:32 -05:00
return 1 ;
}