linphone-iphone/gtk/update.c

157 lines
4.6 KiB
C

/*
linphone, gtk-glade interface.
Copyright (C) 2008 Simon MORLAT (simon.morlat@linphone.org)
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 "linphone.h"
#ifdef WIN32
#include <wininet.h>
static int linphone_gtk_create_version(const char *version_url, char *version, size_t size){
DWORD dwDownloaded = 0;
HINTERNET hSession = NULL, hConnect = NULL;
int ret=-1;
hSession=InternetOpen("Linphone",INTERNET_OPEN_TYPE_PRECONFIG,NULL,NULL,0);
if (hSession==NULL) return -1;
hConnect=InternetOpenUrl(hSession,version_url,NULL,0,0,0);
if (hConnect==NULL) {
InternetCloseHandle(hSession);
return -1;
}
dwDownloaded=0;
if (InternetReadFile(hConnect,version,size,&dwDownloaded) && dwDownloaded>0){
version[dwDownloaded]='\0';
ms_message("Got response: %s", version);
/*check this not just html containing 404 not found*/
if (strstr(version,"html")==0)
ret=0;
}
// Close any open handles.
if (hConnect) InternetCloseHandle(hConnect);
if (hSession) InternetCloseHandle(hSession);
return ret;
}
#else
static int linphone_gtk_create_version(const char *url, char *version, size_t size){
return -1;
}
#endif
static void new_version_response(GtkWidget *dialog, int response_id, gpointer download_site){
if (response_id==GTK_RESPONSE_YES){
linphone_gtk_open_browser((const char*)download_site);
}
gtk_widget_destroy(dialog);
}
static gboolean popup_new_version(const char *download_site){
GtkWidget *dialog;
/* draw a question box. link to dialog_click callback */
dialog = gtk_message_dialog_new (
GTK_WINDOW(linphone_gtk_get_main_window()),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_YES_NO,
_("A more recent version is availalble from %s.\nWould you like to open a browser to download it ?"),
download_site);
g_signal_connect(G_OBJECT (dialog), "response",
G_CALLBACK (new_version_response),
(gpointer)download_site);
/* actually show the box */
gtk_widget_show(dialog);
return FALSE;
}
static gboolean popup_version_ok(){
linphone_gtk_display_something(GTK_MESSAGE_INFO,_("You are running the lastest version."));
return FALSE;
}
static int copytilldot(char *n, const char *v){
int ret=0;
while(*v!='\0' && *v!='.' && *v!='-' && *v!='\n' && *v!='\r' && *v!='\t'){
*n=*v;
ret++;
v++;
n++;
}
*n='\0';
if (*v!='\0') ret=ret+1;
return ret;
}
static int version_compare(const char *v1, const char *v2){
char n1[16];
char n2[16];
int ret;
if (*v1=='\0' && *v2=='\0') return 0;
v1+=copytilldot(n1,v1);
v2+=copytilldot(n2,v2);
ms_message("Comparing %s <> %s",n1,n2);
ret=strcmp(n1,n2);
if (ret==0) return version_compare(v1,v2);
else return ret;
}
static void *check_for_new_version(void *d){
const char *version_url=(const char *)d;
char version[256];
if (linphone_gtk_create_version(version_url,version,sizeof(version))==0){
if (version_compare(version,LINPHONE_VERSION)>0){
const char *download_site=linphone_gtk_get_ui_config("download_site",NULL);
if (download_site) {
gdk_threads_enter();
g_idle_add((GSourceFunc)popup_new_version,(gpointer)download_site);
gdk_threads_leave();
}
}else{
if (linphone_gtk_get_ui_config_int("update_check_menu",0)){
gdk_threads_enter();
g_idle_add((GSourceFunc)popup_version_ok,NULL);
gdk_threads_leave();
}
}
}
return NULL;
}
void linphone_gtk_check_for_new_version(void){
ortp_thread_t thread;
static gboolean done=FALSE;
const char *version_url;
if (done) return;
done=TRUE;
version_url=linphone_gtk_get_ui_config("last_version_url",NULL);
if (version_url==NULL) return ;
ortp_thread_create(&thread,NULL,check_for_new_version,(void*)version_url);
}
/*called when the user clicks on the "Check for updates" menu item */
void linphone_gtk_check_for_updates(void){
linphone_gtk_check_for_new_version();
}