]> git.sesse.net Git - vlc/blob - modules/gui/macosx/update.m
* retrieve the release notes and display them
[vlc] / modules / gui / macosx / update.m
1 /*****************************************************************************
2  * update.m: MacOS X Check-For-Update window
3  *****************************************************************************
4  * Copyright (C) 2005-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Felix K\9fhne <fkuehne@users.sf.net>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24
25 /*****************************************************************************
26  * Note: the code used to communicate with VLC's core was inspired by 
27  * ../wxwidgets/dialogs/updatevlc.cpp, written by Antoine Cellerier. 
28  *****************************************************************************/
29
30
31 /*****************************************************************************
32  * Preamble
33  *****************************************************************************/
34 #import "update.h"
35 #import "intf.h"
36
37
38 /*****************************************************************************
39  * VLCExtended implementation
40  *****************************************************************************/
41
42 @implementation VLCUpdate
43
44 static VLCUpdate *_o_sharedInstance = nil;
45
46 + (VLCUpdate *)sharedInstance
47 {
48     return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
49 }
50
51 - (id)init
52 {
53     if (_o_sharedInstance) {
54         [self dealloc];
55     } else {
56         _o_sharedInstance = [super init];
57     }
58
59     return _o_sharedInstance;
60 }
61
62 - (void)awakeFromNib
63 {
64     /* get up */
65     p_intf = VLCIntf;
66
67     /* clean the interface */
68     [o_fld_releaseNote setString: @""];
69     
70     [self initStrings];
71 }
72
73 - (void)dealloc
74 {
75     if( o_hashOfOurBinary )
76         [o_hashOfOurBinary release];
77     if( o_urlOfBinary )
78         [o_urlOfBinary release];
79
80     [super dealloc];
81 }
82
83 - (void)initStrings
84 {
85     /* translate strings to the user's language */
86     [o_update_window setTitle: _NS("Check for Update")];
87     [o_btn_DownloadNow setTitle: _NS("Download now")];
88     [o_btn_okay setTitle: _NS("OK")];
89 }
90
91 - (void)showUpdateWindow
92 {
93     /* show the window and check for a potential update */
94     [o_fld_status setStringValue: _NS("Checking for Update...")];
95     [o_fld_currentVersionAndSize setStringValue: @""];
96     [o_fld_releaseNote setString: @""];
97
98     [o_update_window center];
99     [o_update_window displayIfNeeded];
100     [o_update_window makeKeyAndOrderFront:nil];
101
102     [o_bar_checking startAnimation: self];
103     [self checkForUpdate];
104     [o_bar_checking stopAnimation: self];
105 }
106
107 - (IBAction)download:(id)sender
108 {
109     /* enable the following once full notification support is available
110     * provide a save dialogue *
111     SEL sel = @selector(getLocationForSaving:returnCode:contextInfo:);
112     NSSavePanel * saveFilePanel = [[NSSavePanel alloc] init];
113     
114     [saveFilePanel setRequiredFileType: @"dmg"];
115     [saveFilePanel setCanSelectHiddenExtension: YES];
116     [saveFilePanel setCanCreateDirectories: YES];
117     [saveFilePanel beginSheetForDirectory:nil file:nil modalForWindow: \
118         o_update_window modalDelegate:self didEndSelector:sel contextInfo:nil];*/
119
120     /* delete this afterwards */
121     [self performDownload: @""];
122 }
123
124 - (void)getLocationForSaving: (NSSavePanel *)sheet returnCode: \
125     (int)returnCode contextInfo: (void *)contextInfo
126 {
127     if (returnCode == NSOKButton)
128     {
129         /* perform download and pass the selected path */
130         [self performDownload: [sheet filename]];
131     }
132     [sheet release];
133 }
134
135 - (IBAction)okay:(id)sender
136 {
137     /* just close the window */
138     [o_update_window close];
139 }
140
141 - (void)checkForUpdate
142 {
143     p_u = update_New( p_intf );
144     update_Check( p_u, VLC_FALSE );
145     update_iterator_t *p_uit = update_iterator_New( p_u );
146     BOOL releaseChecked = NO;
147     int x = 0;
148     NSString * pathToReleaseNote;
149     pathToReleaseNote = [[NSString stringWithString: \
150         @"~/Library/Caches/vlc_releasenote_temp.txt"] \
151         stringByExpandingTildeInPath];
152     
153     if( p_uit )
154     {
155         p_uit->i_rs = UPDATE_RELEASE_STATUS_NEWER;
156         p_uit->i_t = UPDATE_FILE_TYPE_ALL;
157         update_iterator_Action( p_uit, UPDATE_MIRROR );
158         
159         while( update_iterator_Action( p_uit, UPDATE_FILE) != UPDATE_FAIL )
160         {
161             /* if the announced item is of the type "binary", keep it and display
162              * its details to the user. Do similar stuff on "info". Do both 
163              * only if the file is announced as stable */
164             if( p_uit->release.i_type == UPDATE_RELEASE_TYPE_STABLE )
165             {
166                 if( p_uit->file.i_type == UPDATE_FILE_TYPE_INFO )
167                 {
168                     [o_fld_releaseNote setString: \
169                         [NSString stringWithUTF8String: \
170                         (p_uit->file.psz_description)]];
171                     /* download our release note
172                      * We will read the temp file after this loop */
173                     update_download( p_uit, (char *)[pathToReleaseNote UTF8String] );
174                 }
175                 else if( p_uit->file.i_type == UPDATE_FILE_TYPE_BINARY )
176                 {
177                     msg_Dbg( p_intf, "binary found, version = %s" \
178                         ", hash=%s, size=%i", p_uit->release.psz_version, \
179                         p_uit->file.psz_md5, (int)((p_uit->file.l_size \
180                         / 1024) / 1024) );
181                     [o_fld_currentVersionAndSize setStringValue: \
182                         [NSString stringWithFormat: \
183                         @"The current release is %s (%i MB to download).", \
184                         p_uit->release.psz_version, ((p_uit->file.l_size \
185                         / 1024) / 1024)]];
186                         
187                     if( o_urlOfBinary )
188                         [o_urlOfBinary release];
189                     o_urlOfBinary = [[NSString alloc] initWithUTF8String: \
190                         p_uit->file.psz_url];
191
192                     /* save the hash of our file, if available */
193                     if( p_uit->file.psz_md5 )
194                     {
195                         if( o_hashOfOurBinary )
196                             [o_hashOfOurBinary release];
197                         o_hashOfOurBinary = [[NSString alloc] \
198                             initWithUTF8String: p_uit->file.psz_md5];
199                     }
200                 }
201                 if( p_uit->release.i_status == UPDATE_RELEASE_STATUS_NEWER &&
202                     !releaseChecked )
203                 {
204                     /* our version is outdated, let the user download the new
205                      * release */
206                     [o_fld_status setStringValue: _NS("Your version of VLC " \
207                         "is outdated.")];
208                     [o_btn_DownloadNow setEnabled: YES];
209                     msg_Dbg( p_intf, "this version of VLC is outdated" );
210                     /* put the mirror information */
211                     msg_Dbg( p_intf, "used mirror: %s, %s [%s]", \
212                             p_uit->mirror.psz_name, p_uit->mirror.psz_location,\
213                             p_uit->mirror.psz_type );
214                     /* make sure that we perform this check only once */
215                     releaseChecked = YES;
216                 }
217                 else if(! releaseChecked )
218                 {
219                     [o_fld_status setStringValue: _NS("Your version of VLC " \
220                         "is up-to-date.")];
221                     [o_btn_DownloadNow setEnabled: NO];
222                     msg_Dbg( p_intf, "current version is up-to-date" );
223                     releaseChecked = YES;
224                 }
225             }
226             x += 1;
227         }
228
229         update_iterator_Delete( p_uit );
230         
231         /* wait for our download, since it is done by another thread
232          * this does usually take 300000 to 500000 ms */
233         int i = 0;
234         while( [[NSFileManager defaultManager] fileExistsAtPath: pathToReleaseNote] == NO )
235         {
236             msleep( 100000 );
237             i += 1;
238             if( i == 600 )
239             {
240                 /* if this takes more than 1 min, exit */
241                 msg_Warn( p_intf, "download took more than a minute, exiting" );
242                 return;
243             }
244         }
245         msg_Dbg( p_intf, "waited %i ms for the release notes", (i * 100000) );
246         msleep( 500000 );
247
248         /* let's open our cached release note and display it
249          * we can't use NSString stringWithContentsOfFile:encoding:error: 
250          * since it is Tiger only */
251         NSString * releaseNote = [[NSString alloc] initWithData: \
252             [NSData dataWithContentsOfFile: pathToReleaseNote] \
253             encoding: NSISOLatin1StringEncoding];
254         if( releaseNote )
255             [o_fld_releaseNote setString: releaseNote];
256
257         /* delete the file since it isn't needed anymore */
258         BOOL myBOOL = NO;
259         myBOOL = [[NSFileManager defaultManager] removeFileAtPath: \
260             pathToReleaseNote handler: nil];
261     }
262 }
263
264 - (void)performDownload:(NSString *)path
265 {
266     /* enable this once notifications are completely available on OSX 
267     update_iterator_t *p_uit = update_iterator_New( p_u );
268     if( p_uit )
269     {
270         update_iterator_Action( p_uit, UPDATE_MIRROR );
271         
272         int i_count = 0;
273         while( update_iterator_Action( p_uit, UPDATE_FILE ) != UPDATE_FAIL )
274         {
275             if( p_uit->file.psz_url == [o_hashOfOurBinary UTF8String] )
276                 break;
277             i_count += 1;
278         }
279         
280         
281         update_download( p_uit, (char *)[path UTF8String] );
282         
283         update_iterator_Delete( p_uit );
284     }*/
285     
286     /* delete the following afterwards */
287     msg_Dbg( p_intf, "url is %s, using default browser for download", \
288         [o_urlOfBinary UTF8String] );
289         
290     NSURL * o_url = [NSURL URLWithString: o_urlOfBinary];
291
292     [[NSWorkspace sharedWorkspace] openURL: o_url];
293     
294     [o_update_window close];
295 }
296
297 @end