Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include "sal/config.h"
22 :
23 : #include <cstddef>
24 : #include <limits>
25 : #include <map>
26 : #include <utility>
27 : #include <vector>
28 :
29 :
30 : #include "boost/optional.hpp"
31 : #include "com/sun/star/awt/Rectangle.hpp"
32 : #include "com/sun/star/awt/WindowAttribute.hpp"
33 : #include "com/sun/star/awt/WindowClass.hpp"
34 : #include "com/sun/star/awt/WindowDescriptor.hpp"
35 : #include "com/sun/star/awt/Toolkit.hpp"
36 : #include "com/sun/star/awt/XWindow.hpp"
37 : #include "com/sun/star/awt/XWindowPeer.hpp"
38 : #include "com/sun/star/beans/NamedValue.hpp"
39 : #include "com/sun/star/beans/Optional.hpp"
40 : #include "com/sun/star/beans/PropertyValue.hpp"
41 : #include "com/sun/star/beans/XPropertySet.hpp"
42 : #include "com/sun/star/configuration/theDefaultProvider.hpp"
43 : #include "com/sun/star/container/XNameAccess.hpp"
44 : #include "com/sun/star/container/XNameContainer.hpp"
45 : #include "com/sun/star/deployment/DeploymentException.hpp"
46 : #include "com/sun/star/deployment/UpdateInformationProvider.hpp"
47 : #include "com/sun/star/deployment/XPackage.hpp"
48 : #include "com/sun/star/deployment/XExtensionManager.hpp"
49 : #include "com/sun/star/deployment/ExtensionManager.hpp"
50 : #include "com/sun/star/deployment/XUpdateInformationProvider.hpp"
51 : #include "com/sun/star/frame/Desktop.hpp"
52 : #include "com/sun/star/frame/XDispatch.hpp"
53 : #include "com/sun/star/frame/XDispatchProvider.hpp"
54 : #include "com/sun/star/lang/IllegalArgumentException.hpp"
55 : #include "com/sun/star/lang/XMultiComponentFactory.hpp"
56 : #include "com/sun/star/lang/XSingleServiceFactory.hpp"
57 : #include "com/sun/star/system/SystemShellExecuteFlags.hpp"
58 : #include "com/sun/star/system/SystemShellExecute.hpp"
59 : #include "com/sun/star/task/InteractionHandler.hpp"
60 : #include "com/sun/star/task/XAbortChannel.hpp"
61 : #include "com/sun/star/task/XJob.hpp"
62 : #include "com/sun/star/ucb/CommandAbortedException.hpp"
63 : #include "com/sun/star/ucb/CommandFailedException.hpp"
64 : #include "com/sun/star/ucb/XCommandEnvironment.hpp"
65 : #include "com/sun/star/uno/Any.hxx"
66 : #include "com/sun/star/uno/Exception.hpp"
67 : #include "com/sun/star/uno/Reference.hxx"
68 : #include "com/sun/star/uno/RuntimeException.hpp"
69 : #include "com/sun/star/uno/Sequence.hxx"
70 : #include "com/sun/star/uno/XInterface.hpp"
71 : #include "com/sun/star/util/URL.hpp"
72 : #include "com/sun/star/util/XChangesBatch.hpp"
73 : #include "com/sun/star/util/URLTransformer.hpp"
74 : #include "com/sun/star/util/XURLTransformer.hpp"
75 : #include "com/sun/star/xml/dom/XElement.hpp"
76 : #include "com/sun/star/xml/dom/XNode.hpp"
77 : #include "osl/diagnose.h"
78 : #include "rtl/ref.hxx"
79 : #include "rtl/string.h"
80 : #include "rtl/ustrbuf.hxx"
81 : #include "rtl/ustring.h"
82 : #include "rtl/ustring.hxx"
83 : #include "sal/types.h"
84 : #include "salhelper/thread.hxx"
85 : #include "svtools/svlbitm.hxx"
86 : #include "svtools/treelistbox.hxx"
87 : #include <svtools/controldims.hrc>
88 : #include "svx/checklbx.hxx"
89 : #include "tools/gen.hxx"
90 : #include "tools/link.hxx"
91 : #include "tools/resid.hxx"
92 : #include "tools/solar.h"
93 : #include "unotools/configmgr.hxx"
94 : #include "vcl/button.hxx"
95 : #include "vcl/dialog.hxx"
96 : #include "vcl/fixed.hxx"
97 : #include "vcl/image.hxx"
98 : #include "vcl/msgbox.hxx"
99 : #include "vcl/svapp.hxx"
100 : #include "osl/mutex.hxx"
101 :
102 : #include "comphelper/processfactory.hxx"
103 :
104 : #include "dp_dependencies.hxx"
105 : #include "dp_descriptioninfoset.hxx"
106 : #include "dp_identifier.hxx"
107 : #include "dp_version.hxx"
108 : #include "dp_misc.h"
109 : #include "dp_update.hxx"
110 :
111 : #include "dp_gui.h"
112 : #include "dp_gui.hrc"
113 : #include "dp_gui_updatedata.hxx"
114 : #include "dp_gui_updatedialog.hxx"
115 : #include "dp_gui_shared.hxx"
116 :
117 : class KeyEvent;
118 : class MouseEvent;
119 : class Window;
120 : namespace com { namespace sun { namespace star { namespace uno {
121 : class XComponentContext;
122 : } } } }
123 :
124 : using namespace ::com::sun::star;
125 : using dp_gui::UpdateDialog;
126 :
127 : namespace {
128 :
129 : static sal_Unicode const LF = 0x000A;
130 : static sal_Unicode const CR = 0x000D;
131 : static const sal_uInt16 CMD_ENABLE_UPDATE = 1;
132 : static const sal_uInt16 CMD_IGNORE_UPDATE = 2;
133 : static const sal_uInt16 CMD_IGNORE_ALL_UPDATES = 3;
134 :
135 : #define IGNORED_UPDATES OUString("/org.openoffice.Office.ExtensionManager/ExtensionUpdateData/IgnoredUpdates")
136 : #define PROPERTY_VERSION "Version"
137 :
138 : enum Kind { ENABLED_UPDATE, DISABLED_UPDATE, SPECIFIC_ERROR };
139 :
140 0 : OUString confineToParagraph(OUString const & text) {
141 : // Confine arbitrary text to a single paragraph in a dp_gui::AutoScrollEdit.
142 : // This assumes that U+000A and U+000D are the only paragraph separators in
143 : // a dp_gui::AutoScrollEdit, and that replacing them with a single space
144 : // each is acceptable:
145 0 : return text.replace(LF, ' ').replace(CR, ' ');
146 : }
147 : }
148 :
149 0 : struct UpdateDialog::DisabledUpdate {
150 : OUString name;
151 : uno::Sequence< OUString > unsatisfiedDependencies;
152 : // We also want to show release notes and publisher for disabled updates
153 : ::com::sun::star::uno::Reference< ::com::sun::star::xml::dom::XNode > aUpdateInfo;
154 : sal_uInt16 m_nID;
155 : };
156 :
157 0 : struct UpdateDialog::SpecificError {
158 : OUString name;
159 : OUString message;
160 : sal_uInt16 m_nID;
161 : };
162 :
163 :
164 0 : struct UpdateDialog::IgnoredUpdate {
165 : OUString sExtensionID;
166 : OUString sVersion;
167 : bool bRemoved;
168 :
169 : IgnoredUpdate( const OUString &rExtensionID, const OUString &rVersion );
170 : };
171 :
172 :
173 0 : UpdateDialog::IgnoredUpdate::IgnoredUpdate( const OUString &rExtensionID, const OUString &rVersion ):
174 : sExtensionID( rExtensionID ),
175 : sVersion( rVersion ),
176 0 : bRemoved( false )
177 0 : {}
178 :
179 :
180 0 : struct UpdateDialog::Index
181 : {
182 : Kind m_eKind;
183 : bool m_bIgnored;
184 : sal_uInt16 m_nID;
185 : sal_uInt16 m_nIndex;
186 : OUString m_aName;
187 :
188 : Index( Kind theKind, sal_uInt16 nID, sal_uInt16 nIndex, const OUString &rName );
189 : };
190 :
191 :
192 0 : UpdateDialog::Index::Index( Kind theKind, sal_uInt16 nID, sal_uInt16 nIndex, const OUString &rName ):
193 : m_eKind( theKind ),
194 : m_bIgnored( false ),
195 : m_nID( nID ),
196 : m_nIndex( nIndex ),
197 0 : m_aName( rName )
198 0 : {}
199 :
200 :
201 :
202 :
203 : class UpdateDialog::Thread: public salhelper::Thread {
204 : public:
205 : Thread(
206 : uno::Reference< uno::XComponentContext > const & context,
207 : UpdateDialog & dialog,
208 : const std::vector< uno::Reference< deployment::XPackage > > & vExtensionList);
209 :
210 : void stop();
211 :
212 : private:
213 : virtual ~Thread();
214 :
215 : virtual void execute() SAL_OVERRIDE;
216 :
217 : void handleSpecificError(
218 : uno::Reference< deployment::XPackage > const & package,
219 : uno::Any const & exception) const;
220 :
221 : uno::Sequence< uno::Reference< xml::dom::XElement > >
222 : getUpdateInformation(
223 : uno::Reference< deployment::XPackage > const & package,
224 : uno::Sequence< OUString > const & urls,
225 : OUString const & identifier) const;
226 :
227 : OUString getUpdateDisplayString(
228 : dp_gui::UpdateData const & data, OUString const & version = OUString()) const;
229 :
230 : void prepareUpdateData(
231 : ::com::sun::star::uno::Reference< ::com::sun::star::xml::dom::XNode > const & updateInfo,
232 : UpdateDialog::DisabledUpdate & out_du,
233 : dp_gui::UpdateData & out_data) const;
234 :
235 : bool update(
236 : UpdateDialog::DisabledUpdate & du,
237 : dp_gui::UpdateData & data) const;
238 :
239 : uno::Reference< uno::XComponentContext > m_context;
240 : UpdateDialog & m_dialog;
241 : std::vector< uno::Reference< deployment::XPackage > > m_vExtensionList;
242 : uno::Reference< deployment::XUpdateInformationProvider > m_updateInformation;
243 : uno::Reference< task::XInteractionHandler > m_xInteractionHdl;
244 :
245 : // guarded by Application::GetSolarMutex():
246 : uno::Reference< task::XAbortChannel > m_abort;
247 : bool m_stop;
248 : };
249 :
250 0 : UpdateDialog::Thread::Thread(
251 : uno::Reference< uno::XComponentContext > const & context,
252 : UpdateDialog & dialog,
253 : const std::vector< uno::Reference< deployment::XPackage > > &vExtensionList):
254 : salhelper::Thread("dp_gui_updatedialog"),
255 : m_context(context),
256 : m_dialog(dialog),
257 : m_vExtensionList(vExtensionList),
258 : m_updateInformation(
259 : deployment::UpdateInformationProvider::create(context)),
260 0 : m_stop(false)
261 : {
262 0 : if( m_context.is() )
263 : {
264 : m_xInteractionHdl.set(
265 : task::InteractionHandler::createWithParent(m_context, 0),
266 0 : uno::UNO_QUERY );
267 0 : m_updateInformation->setInteractionHandler( m_xInteractionHdl );
268 : }
269 0 : }
270 :
271 0 : void UpdateDialog::Thread::stop() {
272 0 : uno::Reference< task::XAbortChannel > abort;
273 : {
274 0 : SolarMutexGuard g;
275 0 : abort = m_abort;
276 0 : m_stop = true;
277 : }
278 0 : if (abort.is()) {
279 0 : abort->sendAbort();
280 : }
281 0 : m_updateInformation->cancel();
282 0 : }
283 :
284 0 : UpdateDialog::Thread::~Thread()
285 : {
286 0 : if ( m_xInteractionHdl.is() )
287 0 : m_updateInformation->setInteractionHandler( uno::Reference< task::XInteractionHandler > () );
288 0 : }
289 :
290 0 : void UpdateDialog::Thread::execute()
291 : {
292 : {
293 0 : SolarMutexGuard g;
294 0 : if ( m_stop ) {
295 0 : return;
296 0 : }
297 : }
298 : uno::Reference<deployment::XExtensionManager> extMgr =
299 0 : deployment::ExtensionManager::get(m_context);
300 :
301 0 : std::vector<std::pair<uno::Reference<deployment::XPackage>, uno::Any > > errors;
302 :
303 : dp_misc::UpdateInfoMap updateInfoMap = dp_misc::getOnlineUpdateInfos(
304 0 : m_context, extMgr, m_updateInformation, &m_vExtensionList, errors);
305 :
306 : typedef std::vector<std::pair<uno::Reference<deployment::XPackage>,
307 : uno::Any> >::const_iterator ITERROR;
308 0 : for (ITERROR ite = errors.begin(); ite != errors.end(); ++ite )
309 0 : handleSpecificError(ite->first, ite->second);
310 :
311 0 : for (dp_misc::UpdateInfoMap::iterator i(updateInfoMap.begin()); i != updateInfoMap.end(); ++i)
312 : {
313 0 : dp_misc::UpdateInfo const & info = i->second;
314 0 : UpdateData updateData(info.extension);
315 0 : DisabledUpdate disableUpdate;
316 : //determine if online updates meet the requirements
317 0 : prepareUpdateData(info.info, disableUpdate, updateData);
318 :
319 : //determine if the update is installed in the user or shared repository
320 0 : OUString sOnlineVersion;
321 0 : if (info.info.is())
322 0 : sOnlineVersion = info.version;
323 0 : OUString sVersionUser;
324 0 : OUString sVersionShared;
325 0 : OUString sVersionBundled;
326 0 : uno::Sequence< uno::Reference< deployment::XPackage> > extensions;
327 : try {
328 0 : extensions = extMgr->getExtensionsWithSameIdentifier(
329 0 : dp_misc::getIdentifier(info.extension), info.extension->getName(),
330 0 : uno::Reference<ucb::XCommandEnvironment>());
331 0 : } catch ( const lang::IllegalArgumentException& ) {
332 : OSL_ASSERT(false);
333 0 : continue;
334 0 : } catch ( const css::ucb::CommandFailedException& ) {
335 : OSL_ASSERT(false);
336 0 : continue;
337 : }
338 : OSL_ASSERT(extensions.getLength() == 3);
339 0 : if (extensions[0].is() )
340 0 : sVersionUser = extensions[0]->getVersion();
341 0 : if (extensions[1].is() )
342 0 : sVersionShared = extensions[1]->getVersion();
343 0 : if (extensions[2].is() )
344 0 : sVersionBundled = extensions[2]->getVersion();
345 :
346 0 : bool bSharedReadOnly = extMgr->isReadOnlyRepository("shared");
347 :
348 : dp_misc::UPDATE_SOURCE sourceUser = dp_misc::isUpdateUserExtension(
349 0 : bSharedReadOnly, sVersionUser, sVersionShared, sVersionBundled, sOnlineVersion);
350 : dp_misc::UPDATE_SOURCE sourceShared = dp_misc::isUpdateSharedExtension(
351 0 : bSharedReadOnly, sVersionShared, sVersionBundled, sOnlineVersion);
352 :
353 0 : uno::Reference<deployment::XPackage> updateSource;
354 0 : if (sourceUser != dp_misc::UPDATE_SOURCE_NONE)
355 : {
356 0 : if (sourceUser == dp_misc::UPDATE_SOURCE_SHARED)
357 : {
358 0 : updateData.aUpdateSource = extensions[1];
359 0 : updateData.updateVersion = extensions[1]->getVersion();
360 : }
361 0 : else if (sourceUser == dp_misc::UPDATE_SOURCE_BUNDLED)
362 : {
363 0 : updateData.aUpdateSource = extensions[2];
364 0 : updateData.updateVersion = extensions[2]->getVersion();
365 : }
366 0 : if (!update(disableUpdate, updateData))
367 0 : return;
368 : }
369 :
370 0 : if (sourceShared != dp_misc::UPDATE_SOURCE_NONE)
371 : {
372 0 : if (sourceShared == dp_misc::UPDATE_SOURCE_BUNDLED)
373 : {
374 0 : updateData.aUpdateSource = extensions[2];
375 0 : updateData.updateVersion = extensions[2]->getVersion();
376 : }
377 0 : updateData.bIsShared = true;
378 0 : if (!update(disableUpdate, updateData))
379 0 : return;
380 : }
381 0 : }
382 :
383 :
384 0 : SolarMutexGuard g;
385 0 : if (!m_stop) {
386 0 : m_dialog.checkingDone();
387 0 : }
388 : }
389 :
390 : //Parameter package can be null
391 0 : void UpdateDialog::Thread::handleSpecificError(
392 : uno::Reference< deployment::XPackage > const & package,
393 : uno::Any const & exception) const
394 : {
395 0 : UpdateDialog::SpecificError data;
396 0 : if (package.is())
397 0 : data.name = package->getDisplayName();
398 0 : uno::Exception e;
399 0 : if (exception >>= e) {
400 0 : data.message = e.Message;
401 : }
402 0 : SolarMutexGuard g;
403 0 : if (!m_stop) {
404 0 : m_dialog.addSpecificError(data);
405 0 : }
406 0 : }
407 :
408 0 : OUString UpdateDialog::Thread::getUpdateDisplayString(
409 : dp_gui::UpdateData const & data, OUString const & version) const
410 : {
411 : OSL_ASSERT(data.aInstalledPackage.is());
412 0 : OUStringBuffer b(data.aInstalledPackage->getDisplayName());
413 0 : b.append(' ');
414 : {
415 0 : SolarMutexGuard g;
416 0 : if(!m_stop)
417 0 : b.append(m_dialog.m_version);
418 : }
419 0 : b.append(' ');
420 0 : if (!version.isEmpty())
421 0 : b.append(version);
422 : else
423 0 : b.append(data.updateVersion);
424 :
425 0 : if (!data.sWebsiteURL.isEmpty())
426 : {
427 0 : b.append(' ');
428 : {
429 0 : SolarMutexGuard g;
430 0 : if(!m_stop)
431 0 : b.append(m_dialog.m_browserbased);
432 : }
433 : }
434 0 : return b.makeStringAndClear();
435 : }
436 :
437 : /** out_data will only be filled if all dependencies are ok.
438 : */
439 0 : void UpdateDialog::Thread::prepareUpdateData(
440 : uno::Reference< xml::dom::XNode > const & updateInfo,
441 : UpdateDialog::DisabledUpdate & out_du,
442 : dp_gui::UpdateData & out_data) const
443 : {
444 0 : if (!updateInfo.is())
445 0 : return;
446 0 : dp_misc::DescriptionInfoset infoset(m_context, updateInfo);
447 : OSL_ASSERT(!infoset.getVersion().isEmpty());
448 : uno::Sequence< uno::Reference< xml::dom::XElement > > ds(
449 0 : dp_misc::Dependencies::check(infoset));
450 :
451 0 : out_du.aUpdateInfo = updateInfo;
452 0 : out_du.unsatisfiedDependencies.realloc(ds.getLength());
453 0 : for (sal_Int32 i = 0; i < ds.getLength(); ++i) {
454 0 : out_du.unsatisfiedDependencies[i] = dp_misc::Dependencies::getErrorText(ds[i]);
455 : }
456 :
457 0 : const ::boost::optional< OUString> updateWebsiteURL(infoset.getLocalizedUpdateWebsiteURL());
458 :
459 0 : out_du.name = getUpdateDisplayString(out_data, infoset.getVersion());
460 :
461 0 : if (out_du.unsatisfiedDependencies.getLength() == 0)
462 : {
463 0 : out_data.aUpdateInfo = updateInfo;
464 0 : out_data.updateVersion = infoset.getVersion();
465 0 : if (updateWebsiteURL)
466 0 : out_data.sWebsiteURL = *updateWebsiteURL;
467 0 : }
468 : }
469 :
470 0 : bool UpdateDialog::Thread::update(
471 : UpdateDialog::DisabledUpdate & du,
472 : dp_gui::UpdateData & data) const
473 : {
474 0 : bool ret = false;
475 0 : if (du.unsatisfiedDependencies.getLength() == 0)
476 : {
477 0 : SolarMutexGuard g;
478 0 : if (!m_stop) {
479 0 : m_dialog.addEnabledUpdate(getUpdateDisplayString(data), data);
480 : }
481 0 : ret = !m_stop;
482 : } else {
483 0 : SolarMutexGuard g;
484 0 : if (!m_stop) {
485 0 : m_dialog.addDisabledUpdate(du);
486 : }
487 0 : ret = !m_stop;
488 : }
489 0 : return ret;
490 : }
491 :
492 : // UpdateDialog ----------------------------------------------------------
493 0 : UpdateDialog::UpdateDialog(
494 : uno::Reference< uno::XComponentContext > const & context,
495 : Window * parent,
496 : const std::vector<uno::Reference< deployment::XPackage > > &vExtensionList,
497 : std::vector< dp_gui::UpdateData > * updateData):
498 : ModalDialog(parent,DpGuiResId(RID_DLG_UPDATE)),
499 : m_context(context),
500 : m_checking(this, DpGuiResId(RID_DLG_UPDATE_CHECKING)),
501 : m_throbber(this, DpGuiResId(RID_DLG_UPDATE_THROBBER)),
502 : m_update(this, DpGuiResId(RID_DLG_UPDATE_UPDATE)),
503 : m_updates(
504 : *this, DpGuiResId(RID_DLG_UPDATE_UPDATES),
505 : Image(DpGuiResId(RID_DLG_UPDATE_NORMALALERT))),
506 : m_all(this, DpGuiResId(RID_DLG_UPDATE_ALL)),
507 : m_description(this, DpGuiResId(RID_DLG_UPDATE_DESCRIPTION)),
508 : m_PublisherLabel(this, DpGuiResId(RID_DLG_UPDATE_PUBLISHER_LABEL)),
509 : m_PublisherLink(this, DpGuiResId(RID_DLG_UPDATE_PUBLISHER_LINK)),
510 : m_ReleaseNotesLabel(this, DpGuiResId(RID_DLG_UPDATE_RELEASENOTES_LABEL)),
511 : m_ReleaseNotesLink(this, DpGuiResId(RID_DLG_UPDATE_RELEASENOTES_LINK)),
512 : m_descriptions(this, DpGuiResId(RID_DLG_UPDATE_DESCRIPTIONS)),
513 : m_line(this, DpGuiResId(RID_DLG_UPDATE_LINE)),
514 : m_help(this, DpGuiResId(RID_DLG_UPDATE_HELP)),
515 : m_ok(this, DpGuiResId(RID_DLG_UPDATE_OK)),
516 : m_close(this, DpGuiResId(RID_DLG_UPDATE_CLOSE)),
517 : m_error(DPGUI_RESSTR(RID_DLG_UPDATE_ERROR)),
518 : m_none(DPGUI_RESSTR(RID_DLG_UPDATE_NONE)),
519 : m_noInstallable(DPGUI_RESSTR(RID_DLG_UPDATE_NOINSTALLABLE)),
520 : m_failure(DPGUI_RESSTR(RID_DLG_UPDATE_FAILURE)),
521 : m_unknownError(DPGUI_RESSTR(RID_DLG_UPDATE_UNKNOWNERROR)),
522 : m_noDescription(DPGUI_RESSTR(RID_DLG_UPDATE_NODESCRIPTION)),
523 : m_noInstall(DPGUI_RESSTR(RID_DLG_UPDATE_NOINSTALL)),
524 : m_noDependency(DPGUI_RESSTR(RID_DLG_UPDATE_NODEPENDENCY)),
525 : m_noDependencyCurVer(DPGUI_RESSTR(RID_DLG_UPDATE_NODEPENDENCY_CUR_VER)),
526 : m_browserbased(DPGUI_RESSTR(RID_DLG_UPDATE_BROWSERBASED)),
527 : m_version(DPGUI_RESSTR(RID_DLG_UPDATE_VERSION)),
528 : m_ignoredUpdate(DPGUI_RESSTR(RID_DLG_UPDATE_IGNORED_UPDATE)),
529 : m_updateData(*updateData),
530 : m_thread(
531 : new UpdateDialog::Thread(
532 0 : context, *this, vExtensionList)),
533 : m_nFirstLineDelta(0),
534 : m_nOneLineMissing(0),
535 : m_nLastID(1),
536 0 : m_bModified( false )
537 : // TODO: check!
538 : // ,
539 : // m_extensionManagerDialog(extensionManagerDialog)
540 : {
541 : OSL_ASSERT(updateData != NULL);
542 :
543 0 : m_xExtensionManager = deployment::ExtensionManager::get( context );
544 :
545 0 : uno::Reference< awt::XToolkit2 > toolkit;
546 : try {
547 0 : toolkit = awt::Toolkit::create(m_context);
548 0 : } catch (const uno::RuntimeException &) {
549 0 : throw;
550 0 : } catch (const uno::Exception & e) {
551 0 : throw uno::RuntimeException(e.Message, e.Context);
552 : }
553 0 : m_updates.SetSelectHdl(LINK(this, UpdateDialog, selectionHandler));
554 0 : m_all.SetToggleHdl(LINK(this, UpdateDialog, allHandler));
555 0 : m_ok.SetClickHdl(LINK(this, UpdateDialog, okHandler));
556 0 : m_close.SetClickHdl(LINK(this, UpdateDialog, closeHandler));
557 0 : if ( ! dp_misc::office_is_running())
558 0 : m_help.Disable();
559 0 : FreeResource();
560 :
561 0 : initDescription();
562 0 : getIgnoredUpdates();
563 0 : }
564 :
565 :
566 0 : UpdateDialog::~UpdateDialog()
567 : {
568 0 : storeIgnoredUpdates();
569 :
570 0 : for ( std::vector< UpdateDialog::Index* >::iterator i( m_ListboxEntries.begin() ); i != m_ListboxEntries.end(); ++i )
571 : {
572 0 : delete (*i);
573 : }
574 0 : for ( std::vector< UpdateDialog::IgnoredUpdate* >::iterator i( m_ignoredUpdates.begin() ); i != m_ignoredUpdates.end(); ++i )
575 : {
576 0 : delete (*i);
577 : }
578 0 : }
579 :
580 :
581 0 : bool UpdateDialog::Close() {
582 0 : m_thread->stop();
583 0 : return ModalDialog::Close();
584 : }
585 :
586 0 : short UpdateDialog::Execute() {
587 0 : m_throbber.start();
588 0 : m_thread->launch();
589 0 : return ModalDialog::Execute();
590 : }
591 :
592 :
593 :
594 :
595 0 : UpdateDialog::CheckListBox::CheckListBox( UpdateDialog & dialog, ResId const & resource,
596 : Image const & normalStaticImage ):
597 : SvxCheckListBox( &dialog, resource, normalStaticImage ),
598 : m_ignoreUpdate( DPGUI_RESSTR( RID_DLG_UPDATE_IGNORE ) ),
599 : m_ignoreAllUpdates( DPGUI_RESSTR( RID_DLG_UPDATE_IGNORE_ALL ) ),
600 : m_enableUpdate( DPGUI_RESSTR( RID_DLG_UPDATE_ENABLE ) ),
601 0 : m_dialog(dialog)
602 0 : {}
603 :
604 :
605 0 : UpdateDialog::CheckListBox::~CheckListBox() {}
606 :
607 :
608 0 : sal_uInt16 UpdateDialog::CheckListBox::getItemCount() const {
609 0 : sal_uLong i = GetEntryCount();
610 : OSL_ASSERT(i <= std::numeric_limits< sal_uInt16 >::max());
611 0 : return sal::static_int_cast< sal_uInt16 >(i);
612 : }
613 :
614 :
615 0 : void UpdateDialog::CheckListBox::MouseButtonDown( MouseEvent const & event )
616 : {
617 : // When clicking on a selected entry in an SvxCheckListBox, the entry's
618 : // checkbox is toggled on mouse button down:
619 0 : SvxCheckListBox::MouseButtonDown( event );
620 :
621 0 : if ( event.IsRight() )
622 : {
623 0 : handlePopupMenu( event.GetPosPixel() );
624 : }
625 :
626 0 : m_dialog.enableOk();
627 0 : }
628 :
629 :
630 0 : void UpdateDialog::CheckListBox::MouseButtonUp(MouseEvent const & event) {
631 : // When clicking on an entry's checkbox in an SvxCheckListBox, the entry's
632 : // checkbox is toggled on mouse button up:
633 0 : SvxCheckListBox::MouseButtonUp(event);
634 0 : m_dialog.enableOk();
635 0 : }
636 :
637 0 : void UpdateDialog::CheckListBox::KeyInput(KeyEvent const & event) {
638 0 : SvxCheckListBox::KeyInput(event);
639 0 : m_dialog.enableOk();
640 0 : }
641 :
642 :
643 0 : void UpdateDialog::CheckListBox::handlePopupMenu( const Point &rPos )
644 : {
645 0 : SvTreeListEntry *pData = GetEntry( rPos );
646 :
647 0 : if ( pData )
648 : {
649 0 : sal_uLong nEntryPos = GetSelectEntryPos();
650 0 : UpdateDialog::Index * p = static_cast< UpdateDialog::Index * >( GetEntryData( nEntryPos ) );
651 :
652 0 : if ( ( p->m_eKind == ENABLED_UPDATE ) || ( p->m_eKind == DISABLED_UPDATE ) )
653 : {
654 0 : PopupMenu aPopup;
655 :
656 0 : if ( p->m_bIgnored )
657 0 : aPopup.InsertItem( CMD_ENABLE_UPDATE, m_enableUpdate );
658 : else
659 : {
660 0 : aPopup.InsertItem( CMD_IGNORE_UPDATE, m_ignoreUpdate );
661 0 : aPopup.InsertItem( CMD_IGNORE_ALL_UPDATES, m_ignoreAllUpdates );
662 : }
663 :
664 0 : sal_uInt16 aCmd = aPopup.Execute( this, rPos );
665 0 : if ( ( aCmd == CMD_IGNORE_UPDATE ) || ( aCmd == CMD_IGNORE_ALL_UPDATES ) )
666 : {
667 0 : p->m_bIgnored = true;
668 0 : if ( p->m_eKind == ENABLED_UPDATE )
669 : {
670 0 : RemoveEntry( nEntryPos );
671 0 : m_dialog.addAdditional( p, SvLBoxButtonKind_disabledCheckbox );
672 : }
673 0 : if ( aCmd == CMD_IGNORE_UPDATE )
674 0 : m_dialog.setIgnoredUpdate( p, true, false );
675 : else
676 0 : m_dialog.setIgnoredUpdate( p, true, true );
677 : // TODO: reselect entry to display new description!
678 : }
679 0 : else if ( aCmd == CMD_ENABLE_UPDATE )
680 : {
681 0 : p->m_bIgnored = false;
682 0 : if ( p->m_eKind == ENABLED_UPDATE )
683 : {
684 0 : RemoveEntry( nEntryPos );
685 0 : m_dialog.insertItem( p, SvLBoxButtonKind_enabledCheckbox );
686 : }
687 0 : m_dialog.setIgnoredUpdate( p, false, false );
688 0 : }
689 : }
690 : }
691 0 : }
692 :
693 :
694 :
695 :
696 0 : sal_uInt16 UpdateDialog::insertItem( UpdateDialog::Index *pEntry, SvLBoxButtonKind kind )
697 : {
698 0 : m_updates.InsertEntry( pEntry->m_aName, TREELIST_APPEND, static_cast< void * >( pEntry ), kind );
699 :
700 0 : for ( sal_uInt16 i = m_updates.getItemCount(); i != 0 ; )
701 : {
702 0 : i -= 1;
703 0 : UpdateDialog::Index const * p = static_cast< UpdateDialog::Index const * >( m_updates.GetEntryData( i ) );
704 0 : if ( p == pEntry )
705 0 : return i;
706 : }
707 : OSL_ASSERT(false);
708 0 : return 0;
709 : }
710 :
711 :
712 0 : void UpdateDialog::addAdditional( UpdateDialog::Index * index, SvLBoxButtonKind kind )
713 : {
714 0 : m_all.Enable();
715 0 : if (m_all.IsChecked())
716 : {
717 0 : insertItem( index, kind );
718 0 : m_update.Enable();
719 0 : m_updates.Enable();
720 0 : m_description.Enable();
721 0 : m_descriptions.Enable();
722 : }
723 0 : }
724 :
725 :
726 0 : void UpdateDialog::addEnabledUpdate( OUString const & name,
727 : dp_gui::UpdateData & data )
728 : {
729 0 : sal_uInt16 nIndex = sal::static_int_cast< sal_uInt16 >( m_enabledUpdates.size() );
730 0 : UpdateDialog::Index *pEntry = new UpdateDialog::Index( ENABLED_UPDATE, m_nLastID, nIndex, name );
731 :
732 0 : data.m_nID = m_nLastID;
733 0 : m_nLastID += 1;
734 :
735 0 : m_enabledUpdates.push_back( data );
736 0 : m_ListboxEntries.push_back( pEntry );
737 :
738 0 : if ( ! isIgnoredUpdate( pEntry ) )
739 : {
740 0 : sal_uInt16 nPos = insertItem( pEntry, SvLBoxButtonKind_enabledCheckbox );
741 0 : m_updates.CheckEntryPos( nPos );
742 : }
743 : else
744 0 : addAdditional( pEntry, SvLBoxButtonKind_disabledCheckbox );
745 :
746 0 : m_update.Enable();
747 0 : m_updates.Enable();
748 0 : m_description.Enable();
749 0 : m_descriptions.Enable();
750 0 : }
751 :
752 :
753 0 : void UpdateDialog::addDisabledUpdate( UpdateDialog::DisabledUpdate & data )
754 : {
755 0 : sal_uInt16 nIndex = sal::static_int_cast< sal_uInt16 >( m_disabledUpdates.size() );
756 0 : UpdateDialog::Index *pEntry = new UpdateDialog::Index( DISABLED_UPDATE, m_nLastID, nIndex, data.name );
757 :
758 0 : data.m_nID = m_nLastID;
759 0 : m_nLastID += 1;
760 :
761 0 : m_disabledUpdates.push_back( data );
762 0 : m_ListboxEntries.push_back( pEntry );
763 :
764 0 : isIgnoredUpdate( pEntry );
765 0 : addAdditional( pEntry, SvLBoxButtonKind_disabledCheckbox );
766 0 : }
767 :
768 :
769 0 : void UpdateDialog::addSpecificError( UpdateDialog::SpecificError & data )
770 : {
771 0 : sal_uInt16 nIndex = sal::static_int_cast< sal_uInt16 >( m_specificErrors.size() );
772 0 : UpdateDialog::Index *pEntry = new UpdateDialog::Index( SPECIFIC_ERROR, m_nLastID, nIndex, data.name );
773 :
774 0 : data.m_nID = m_nLastID;
775 0 : m_nLastID += 1;
776 :
777 0 : m_specificErrors.push_back( data );
778 0 : m_ListboxEntries.push_back( pEntry );
779 :
780 0 : addAdditional( pEntry, SvLBoxButtonKind_staticImage);
781 0 : }
782 :
783 0 : void UpdateDialog::checkingDone() {
784 0 : m_checking.Hide();
785 0 : m_throbber.stop();
786 0 : m_throbber.Hide();
787 0 : if (m_updates.getItemCount() == 0)
788 : {
789 0 : clearDescription();
790 0 : m_description.Enable();
791 0 : m_descriptions.Enable();
792 :
793 0 : if ( m_disabledUpdates.empty() && m_specificErrors.empty() && m_ignoredUpdates.empty() )
794 0 : showDescription( m_none, false );
795 : else
796 0 : showDescription( m_noInstallable, false );
797 : }
798 :
799 0 : enableOk();
800 0 : }
801 :
802 0 : void UpdateDialog::enableOk() {
803 0 : if (!m_checking.IsVisible()) {
804 0 : m_ok.Enable(m_updates.GetCheckedEntryCount() != 0);
805 : }
806 0 : }
807 :
808 : // *********************************************************************************
809 0 : void UpdateDialog::createNotifyJob( bool bPrepareOnly,
810 : uno::Sequence< uno::Sequence< OUString > > &rItemList )
811 : {
812 0 : if ( !dp_misc::office_is_running() )
813 0 : return;
814 :
815 : // notify update check job
816 : try
817 : {
818 : uno::Reference< lang::XMultiServiceFactory > xConfigProvider(
819 : configuration::theDefaultProvider::get(
820 0 : comphelper::getProcessComponentContext()));
821 :
822 0 : beans::PropertyValue aProperty;
823 0 : aProperty.Name = "nodepath";
824 0 : aProperty.Value = uno::makeAny( OUString("org.openoffice.Office.Addons/AddonUI/OfficeHelp/UpdateCheckJob") );
825 :
826 0 : uno::Sequence< uno::Any > aArgumentList( 1 );
827 0 : aArgumentList[0] = uno::makeAny( aProperty );
828 :
829 : uno::Reference< container::XNameAccess > xNameAccess(
830 0 : xConfigProvider->createInstanceWithArguments(
831 0 : "com.sun.star.configuration.ConfigurationAccess", aArgumentList ),
832 0 : uno::UNO_QUERY_THROW );
833 :
834 0 : util::URL aURL;
835 0 : xNameAccess->getByName("URL") >>= aURL.Complete;
836 :
837 0 : uno::Reference< uno::XComponentContext > xContext( ::comphelper::getProcessComponentContext() );
838 0 : uno::Reference < util::XURLTransformer > xTransformer = util::URLTransformer::create(xContext);
839 :
840 0 : xTransformer->parseStrict(aURL);
841 :
842 0 : uno::Reference < frame::XDesktop2 > xDesktop = frame::Desktop::create( xContext );
843 0 : uno::Reference< frame::XDispatchProvider > xDispatchProvider( xDesktop->getCurrentFrame(),
844 0 : uno::UNO_QUERY_THROW );
845 0 : uno::Reference< frame::XDispatch > xDispatch = xDispatchProvider->queryDispatch(aURL, OUString(), 0);
846 :
847 0 : if( xDispatch.is() )
848 : {
849 0 : uno::Sequence< beans::PropertyValue > aPropList(2);
850 0 : aProperty.Name = "updateList";
851 0 : aProperty.Value = uno::makeAny( rItemList );
852 0 : aPropList[0] = aProperty;
853 0 : aProperty.Name = "prepareOnly";
854 0 : aProperty.Value = uno::makeAny( bPrepareOnly );
855 0 : aPropList[1] = aProperty;
856 :
857 0 : xDispatch->dispatch(aURL, aPropList );
858 0 : }
859 : }
860 0 : catch( const uno::Exception& e )
861 : {
862 : dp_misc::TRACE( "Caught exception: "
863 0 : + e.Message + "\n thread terminated.\n\n");
864 : }
865 : }
866 :
867 : // *********************************************************************************
868 0 : void UpdateDialog::notifyMenubar( bool bPrepareOnly, bool bRecheckOnly )
869 : {
870 0 : if ( !dp_misc::office_is_running() )
871 0 : return;
872 :
873 0 : uno::Sequence< uno::Sequence< OUString > > aItemList;
874 :
875 0 : if ( ! bRecheckOnly )
876 : {
877 0 : sal_Int32 nCount = 0;
878 0 : for ( sal_Int16 i = 0; i < m_updates.getItemCount(); ++i )
879 : {
880 0 : uno::Sequence< OUString > aItem(2);
881 :
882 0 : UpdateDialog::Index const * p = static_cast< UpdateDialog::Index const * >(m_updates.GetEntryData(i));
883 :
884 0 : if ( p->m_eKind == ENABLED_UPDATE )
885 : {
886 0 : dp_gui::UpdateData aUpdData = m_enabledUpdates[ p->m_nIndex ];
887 0 : aItem[0] = dp_misc::getIdentifier( aUpdData.aInstalledPackage );
888 :
889 0 : dp_misc::DescriptionInfoset aInfoset( m_context, aUpdData.aUpdateInfo );
890 0 : aItem[1] = aInfoset.getVersion();
891 : }
892 : else
893 0 : continue;
894 :
895 0 : aItemList.realloc( nCount + 1 );
896 0 : aItemList[ nCount ] = aItem;
897 0 : nCount += 1;
898 0 : }
899 : }
900 :
901 0 : storeIgnoredUpdates();
902 0 : createNotifyJob( bPrepareOnly, aItemList );
903 : }
904 :
905 : // *********************************************************************************
906 :
907 0 : void UpdateDialog::initDescription()
908 : {
909 0 : m_PublisherLabel.Hide();
910 0 : m_PublisherLink.Hide();
911 0 : m_ReleaseNotesLabel.Hide();
912 0 : m_ReleaseNotesLink.Hide();
913 0 : m_descriptions.Hide();
914 :
915 0 : Link aLink = LINK( this, UpdateDialog, hyperlink_clicked );
916 0 : m_PublisherLink.SetClickHdl( aLink );
917 0 : m_ReleaseNotesLink.SetClickHdl( aLink );
918 :
919 0 : long nTextWidth = m_PublisherLabel.GetCtrlTextWidth( m_PublisherLabel.GetText() );
920 0 : long nTemp = m_ReleaseNotesLabel.GetTextWidth( m_ReleaseNotesLabel.GetText() );
921 0 : if ( nTemp > nTextWidth )
922 0 : nTextWidth = nTemp;
923 0 : nTextWidth = nTextWidth * 110 / 100;
924 :
925 0 : Size aNewSize = m_PublisherLabel.GetSizePixel();
926 0 : if ( nTextWidth > aNewSize.Width() )
927 : {
928 0 : long nDelta = nTextWidth - aNewSize.Width();
929 0 : aNewSize.Width() = nTextWidth;
930 0 : m_PublisherLabel.SetSizePixel( aNewSize );
931 0 : m_ReleaseNotesLabel.SetSizePixel( aNewSize );
932 :
933 0 : aNewSize = m_PublisherLink.GetSizePixel();
934 0 : aNewSize.Width() = aNewSize.Width() - nDelta;
935 0 : Point aNewPos = m_PublisherLink.GetPosPixel();
936 0 : aNewPos.X() = aNewPos.X() + nDelta;
937 0 : m_PublisherLink.SetPosSizePixel( aNewPos, aNewSize );
938 0 : aNewPos.Y() = m_ReleaseNotesLink.GetPosPixel().Y();
939 0 : m_ReleaseNotesLink.SetPosSizePixel( aNewPos, aNewSize );
940 : }
941 :
942 0 : m_aFirstLinePos = m_descriptions.GetPosPixel();
943 0 : m_aFirstLineSize = m_descriptions.GetSizePixel();
944 0 : Size aMarginSize = LogicToPixel( Size( RSC_SP_CTRL_GROUP_X, RSC_SP_CTRL_GROUP_Y ), MAP_APPFONT );
945 0 : Point aThirdLinePos = m_ReleaseNotesLabel.GetPosPixel();
946 0 : aThirdLinePos.Y() = aThirdLinePos.Y() + m_ReleaseNotesLabel.GetSizePixel().Height() + aMarginSize.Height();
947 0 : m_nFirstLineDelta = aThirdLinePos.Y() - m_aFirstLinePos.Y();
948 0 : m_nOneLineMissing = m_ReleaseNotesLabel.GetPosPixel().Y() - m_PublisherLabel.GetPosPixel().Y();
949 0 : }
950 :
951 0 : void UpdateDialog::clearDescription()
952 : {
953 0 : OUString sEmpty;
954 0 : m_PublisherLabel.Hide();
955 0 : m_PublisherLink.Hide();
956 0 : m_PublisherLink.SetText( sEmpty );
957 0 : m_PublisherLink.SetURL( sEmpty );
958 0 : m_ReleaseNotesLabel.Hide();
959 0 : m_ReleaseNotesLink.Hide();
960 0 : m_ReleaseNotesLink.SetURL( sEmpty );
961 0 : if ( m_PublisherLabel.GetPosPixel().Y() == m_ReleaseNotesLabel.GetPosPixel().Y() )
962 : {
963 0 : Point aNewPos = m_ReleaseNotesLabel.GetPosPixel();
964 0 : aNewPos.Y() += m_nOneLineMissing;
965 0 : m_ReleaseNotesLabel.SetPosPixel( aNewPos );
966 0 : aNewPos = m_ReleaseNotesLink.GetPosPixel();
967 0 : aNewPos.Y() += m_nOneLineMissing;
968 0 : m_ReleaseNotesLink.SetPosPixel( aNewPos );
969 : }
970 0 : m_descriptions.Hide();
971 0 : m_descriptions.Clear();
972 0 : m_descriptions.SetPosSizePixel( m_aFirstLinePos, m_aFirstLineSize );
973 0 : }
974 :
975 0 : bool UpdateDialog::showDescription(uno::Reference< xml::dom::XNode > const & aUpdateInfo)
976 : {
977 0 : dp_misc::DescriptionInfoset infoset(m_context, aUpdateInfo);
978 : return showDescription(infoset.getLocalizedPublisherNameAndURL(),
979 0 : infoset.getLocalizedReleaseNotesURL());
980 : }
981 :
982 0 : bool UpdateDialog::showDescription(uno::Reference< deployment::XPackage > const & aExtension)
983 : {
984 : OSL_ASSERT(aExtension.is());
985 0 : beans::StringPair pubInfo = aExtension->getPublisherInfo();
986 : return showDescription(std::make_pair(pubInfo.First, pubInfo.Second),
987 0 : "");
988 : }
989 :
990 0 : bool UpdateDialog::showDescription(std::pair< OUString, OUString > const & pairPublisher,
991 : OUString const & sReleaseNotes)
992 : {
993 0 : OUString sPub = pairPublisher.first;
994 0 : OUString sURL = pairPublisher.second;
995 :
996 0 : if ( sPub.isEmpty() && sURL.isEmpty() && sReleaseNotes.isEmpty() )
997 : // nothing to show
998 0 : return false;
999 :
1000 0 : bool bPublisher = false;
1001 0 : if ( !sPub.isEmpty() )
1002 : {
1003 0 : m_PublisherLabel.Show();
1004 0 : m_PublisherLink.Show();
1005 0 : m_PublisherLink.SetText( sPub );
1006 0 : m_PublisherLink.SetURL( sURL );
1007 0 : bPublisher = true;
1008 : }
1009 :
1010 0 : if ( !sReleaseNotes.isEmpty() )
1011 : {
1012 0 : if ( !bPublisher )
1013 : {
1014 0 : m_ReleaseNotesLabel.SetPosPixel( m_PublisherLabel.GetPosPixel() );
1015 0 : m_ReleaseNotesLink.SetPosPixel( m_PublisherLink.GetPosPixel() );
1016 : }
1017 0 : m_ReleaseNotesLabel.Show();
1018 0 : m_ReleaseNotesLink.Show();
1019 0 : m_ReleaseNotesLink.SetURL( sReleaseNotes );
1020 : }
1021 0 : return true;
1022 : }
1023 :
1024 0 : bool UpdateDialog::showDescription( const OUString& rDescription, bool bWithPublisher )
1025 : {
1026 0 : if ( rDescription.isEmpty() )
1027 : // nothing to show
1028 0 : return false;
1029 :
1030 0 : if ( bWithPublisher )
1031 : {
1032 0 : bool bOneLineMissing = !m_ReleaseNotesLabel.IsVisible() || !m_PublisherLabel.IsVisible();
1033 0 : Point aNewPos = m_aFirstLinePos;
1034 0 : aNewPos.Y() += m_nFirstLineDelta;
1035 0 : if ( bOneLineMissing )
1036 0 : aNewPos.Y() -= m_nOneLineMissing;
1037 0 : Size aNewSize = m_aFirstLineSize;
1038 0 : aNewSize.Height() -= m_nFirstLineDelta;
1039 0 : if ( bOneLineMissing )
1040 0 : aNewSize.Height() += m_nOneLineMissing;
1041 0 : m_descriptions.SetPosSizePixel( aNewPos, aNewSize );
1042 : }
1043 0 : m_descriptions.Show();
1044 0 : m_descriptions.SetText( rDescription );
1045 0 : return true;
1046 : }
1047 :
1048 :
1049 0 : void UpdateDialog::getIgnoredUpdates()
1050 : {
1051 : uno::Reference< lang::XMultiServiceFactory > xConfig(
1052 0 : configuration::theDefaultProvider::get(m_context));
1053 0 : beans::NamedValue aValue( "nodepath", uno::Any( IGNORED_UPDATES ) );
1054 0 : uno::Sequence< uno::Any > args(1);
1055 0 : args[0] <<= aValue;
1056 :
1057 0 : uno::Reference< container::XNameAccess > xNameAccess( xConfig->createInstanceWithArguments( "com.sun.star.configuration.ConfigurationAccess", args), uno::UNO_QUERY_THROW );
1058 0 : uno::Sequence< OUString > aElementNames = xNameAccess->getElementNames();
1059 :
1060 0 : for ( sal_Int32 i = 0; i < aElementNames.getLength(); i++ )
1061 : {
1062 0 : OUString aIdentifier = aElementNames[i];
1063 0 : OUString aVersion;
1064 :
1065 0 : uno::Any aPropValue( uno::Reference< beans::XPropertySet >( xNameAccess->getByName( aIdentifier ), uno::UNO_QUERY_THROW )->getPropertyValue( PROPERTY_VERSION ) );
1066 0 : aPropValue >>= aVersion;
1067 0 : IgnoredUpdate *pData = new IgnoredUpdate( aIdentifier, aVersion );
1068 0 : m_ignoredUpdates.push_back( pData );
1069 0 : }
1070 0 : }
1071 :
1072 :
1073 0 : void UpdateDialog::storeIgnoredUpdates()
1074 : {
1075 0 : if ( m_bModified && ( !m_ignoredUpdates.empty() ) )
1076 : {
1077 : uno::Reference< lang::XMultiServiceFactory > xConfig(
1078 0 : configuration::theDefaultProvider::get(m_context));
1079 0 : beans::NamedValue aValue( "nodepath", uno::Any( IGNORED_UPDATES ) );
1080 0 : uno::Sequence< uno::Any > args(1);
1081 0 : args[0] <<= aValue;
1082 :
1083 0 : uno::Reference< container::XNameContainer > xNameContainer( xConfig->createInstanceWithArguments(
1084 0 : "com.sun.star.configuration.ConfigurationUpdateAccess", args ), uno::UNO_QUERY_THROW );
1085 :
1086 0 : for ( std::vector< UpdateDialog::IgnoredUpdate* >::iterator i( m_ignoredUpdates.begin() ); i != m_ignoredUpdates.end(); ++i )
1087 : {
1088 0 : if ( xNameContainer->hasByName( (*i)->sExtensionID ) )
1089 : {
1090 0 : if ( (*i)->bRemoved )
1091 0 : xNameContainer->removeByName( (*i)->sExtensionID );
1092 : else
1093 0 : uno::Reference< beans::XPropertySet >( xNameContainer->getByName( (*i)->sExtensionID ), uno::UNO_QUERY_THROW )->setPropertyValue( PROPERTY_VERSION, uno::Any( (*i)->sVersion ) );
1094 : }
1095 0 : else if ( ! (*i)->bRemoved )
1096 : {
1097 0 : uno::Reference< beans::XPropertySet > elem( uno::Reference< lang::XSingleServiceFactory >( xNameContainer, uno::UNO_QUERY_THROW )->createInstance(), uno::UNO_QUERY_THROW );
1098 0 : elem->setPropertyValue( PROPERTY_VERSION, uno::Any( (*i)->sVersion ) );
1099 0 : xNameContainer->insertByName( (*i)->sExtensionID, uno::Any( elem ) );
1100 : }
1101 : }
1102 :
1103 0 : uno::Reference< util::XChangesBatch > xChangesBatch( xNameContainer, uno::UNO_QUERY );
1104 0 : if ( xChangesBatch.is() && xChangesBatch->hasPendingChanges() )
1105 0 : xChangesBatch->commitChanges();
1106 : }
1107 :
1108 0 : m_bModified = false;
1109 0 : }
1110 :
1111 :
1112 0 : bool UpdateDialog::isIgnoredUpdate( UpdateDialog::Index * index )
1113 : {
1114 0 : bool bIsIgnored = false;
1115 :
1116 0 : if (! m_ignoredUpdates.empty() )
1117 : {
1118 0 : OUString aExtensionID;
1119 0 : OUString aVersion;
1120 :
1121 0 : if ( index->m_eKind == ENABLED_UPDATE )
1122 : {
1123 0 : dp_gui::UpdateData aUpdData = m_enabledUpdates[ index->m_nIndex ];
1124 0 : aExtensionID = dp_misc::getIdentifier( aUpdData.aInstalledPackage );
1125 0 : aVersion = aUpdData.updateVersion;
1126 : }
1127 0 : else if ( index->m_eKind == DISABLED_UPDATE )
1128 : {
1129 0 : DisabledUpdate &rData = m_disabledUpdates[ index->m_nIndex ];
1130 0 : dp_misc::DescriptionInfoset aInfoset( m_context, rData.aUpdateInfo );
1131 0 : ::boost::optional< OUString > aID( aInfoset.getIdentifier() );
1132 0 : if ( aID )
1133 0 : aExtensionID = *aID;
1134 0 : aVersion = aInfoset.getVersion();
1135 : }
1136 :
1137 0 : for ( std::vector< UpdateDialog::IgnoredUpdate* >::iterator i( m_ignoredUpdates.begin() ); i != m_ignoredUpdates.end(); ++i )
1138 : {
1139 0 : if ( (*i)->sExtensionID == aExtensionID )
1140 : {
1141 0 : if ( ( !(*i)->sVersion.isEmpty() ) || ( (*i)->sVersion == aVersion ) )
1142 : {
1143 0 : bIsIgnored = true;
1144 0 : index->m_bIgnored = true;
1145 : }
1146 : else // when we find another update of an ignored version, we will remove the old one to keep the ignored list small
1147 0 : (*i)->bRemoved = true;
1148 0 : break;
1149 : }
1150 0 : }
1151 : }
1152 :
1153 0 : return bIsIgnored;
1154 : }
1155 :
1156 :
1157 0 : void UpdateDialog::setIgnoredUpdate( UpdateDialog::Index *pIndex, bool bIgnore, bool bIgnoreAll )
1158 : {
1159 0 : OUString aExtensionID;
1160 0 : OUString aVersion;
1161 :
1162 0 : m_bModified = true;
1163 :
1164 0 : if ( pIndex->m_eKind == ENABLED_UPDATE )
1165 : {
1166 0 : dp_gui::UpdateData aUpdData = m_enabledUpdates[ pIndex->m_nIndex ];
1167 0 : aExtensionID = dp_misc::getIdentifier( aUpdData.aInstalledPackage );
1168 0 : if ( !bIgnoreAll )
1169 0 : aVersion = aUpdData.updateVersion;
1170 : }
1171 0 : else if ( pIndex->m_eKind == DISABLED_UPDATE )
1172 : {
1173 0 : DisabledUpdate &rData = m_disabledUpdates[ pIndex->m_nIndex ];
1174 0 : dp_misc::DescriptionInfoset aInfoset( m_context, rData.aUpdateInfo );
1175 0 : ::boost::optional< OUString > aID( aInfoset.getIdentifier() );
1176 0 : if ( aID )
1177 0 : aExtensionID = *aID;
1178 0 : if ( !bIgnoreAll )
1179 0 : aVersion = aInfoset.getVersion();
1180 : }
1181 :
1182 0 : if ( !aExtensionID.isEmpty() )
1183 : {
1184 0 : bool bFound = false;
1185 0 : for ( std::vector< UpdateDialog::IgnoredUpdate* >::iterator i( m_ignoredUpdates.begin() ); i != m_ignoredUpdates.end(); ++i )
1186 : {
1187 0 : if ( (*i)->sExtensionID == aExtensionID )
1188 : {
1189 0 : (*i)->sVersion = aVersion;
1190 0 : (*i)->bRemoved = !bIgnore;
1191 0 : bFound = true;
1192 0 : break;
1193 : }
1194 : }
1195 0 : if ( bIgnore && !bFound )
1196 : {
1197 0 : IgnoredUpdate *pData = new IgnoredUpdate( aExtensionID, aVersion );
1198 0 : m_ignoredUpdates.push_back( pData );
1199 : }
1200 0 : }
1201 0 : }
1202 :
1203 :
1204 :
1205 0 : IMPL_LINK_NOARG(UpdateDialog, selectionHandler)
1206 : {
1207 0 : OUStringBuffer b;
1208 0 : bool bInserted = false;
1209 : UpdateDialog::Index const * p = static_cast< UpdateDialog::Index const * >(
1210 0 : m_updates.GetEntryData(m_updates.GetSelectEntryPos()));
1211 0 : clearDescription();
1212 :
1213 0 : if ( p != NULL )
1214 : {
1215 0 : sal_uInt16 pos = p->m_nIndex;
1216 :
1217 0 : switch (p->m_eKind)
1218 : {
1219 : case ENABLED_UPDATE:
1220 : {
1221 0 : if ( m_enabledUpdates[ pos ].aUpdateSource.is() )
1222 0 : bInserted = showDescription( m_enabledUpdates[ pos ].aUpdateSource );
1223 : else
1224 0 : bInserted = showDescription( m_enabledUpdates[ pos ].aUpdateInfo );
1225 :
1226 0 : if ( p->m_bIgnored )
1227 0 : b.append( m_ignoredUpdate );
1228 :
1229 0 : break;
1230 : }
1231 : case DISABLED_UPDATE:
1232 : {
1233 0 : if ( !m_disabledUpdates.empty() )
1234 0 : bInserted = showDescription( m_disabledUpdates[pos].aUpdateInfo );
1235 :
1236 0 : if ( p->m_bIgnored )
1237 0 : b.append( m_ignoredUpdate );
1238 :
1239 0 : if ( m_disabledUpdates.empty() )
1240 0 : break;
1241 :
1242 0 : UpdateDialog::DisabledUpdate & data = m_disabledUpdates[ pos ];
1243 0 : if (data.unsatisfiedDependencies.getLength() != 0)
1244 : {
1245 : // create error string for version mismatch
1246 0 : OUString sVersion( "%VERSION" );
1247 0 : OUString sProductName( "%PRODUCTNAME" );
1248 0 : sal_Int32 nPos = m_noDependencyCurVer.indexOf( sVersion );
1249 0 : if ( nPos >= 0 )
1250 : {
1251 0 : m_noDependencyCurVer = m_noDependencyCurVer.replaceAt( nPos, sVersion.getLength(), utl::ConfigManager::getAboutBoxProductVersion() );
1252 : }
1253 0 : nPos = m_noDependencyCurVer.indexOf( sProductName );
1254 0 : if ( nPos >= 0 )
1255 : {
1256 0 : m_noDependencyCurVer = m_noDependencyCurVer.replaceAt( nPos, sProductName.getLength(), utl::ConfigManager::getProductName() );
1257 : }
1258 0 : nPos = m_noDependency.indexOf( sProductName );
1259 0 : if ( nPos >= 0 )
1260 : {
1261 0 : m_noDependency = m_noDependency.replaceAt( nPos, sProductName.getLength(), utl::ConfigManager::getProductName() );
1262 : }
1263 :
1264 0 : b.append(m_noInstall);
1265 0 : b.append(LF);
1266 0 : b.append(m_noDependency);
1267 0 : for (sal_Int32 i = 0;
1268 0 : i < data.unsatisfiedDependencies.getLength(); ++i)
1269 : {
1270 0 : b.append(LF);
1271 0 : b.appendAscii(" ");
1272 : // U+2003 EM SPACE would be better than two spaces,
1273 : // but some fonts do not contain it
1274 : b.append(
1275 : confineToParagraph(
1276 0 : data.unsatisfiedDependencies[i]));
1277 : }
1278 0 : b.append(LF);
1279 0 : b.appendAscii(" ");
1280 0 : b.append(m_noDependencyCurVer);
1281 : }
1282 0 : break;
1283 : }
1284 : case SPECIFIC_ERROR:
1285 : {
1286 0 : UpdateDialog::SpecificError & data = m_specificErrors[ pos ];
1287 0 : b.append(m_failure);
1288 0 : b.append(LF);
1289 0 : b.append( data.message.isEmpty() ? m_unknownError : data.message );
1290 0 : break;
1291 : }
1292 : default:
1293 : OSL_ASSERT(false);
1294 0 : break;
1295 : }
1296 : }
1297 :
1298 0 : if ( b.isEmpty() )
1299 0 : b.append( m_noDescription );
1300 :
1301 0 : showDescription( b.makeStringAndClear(), bInserted );
1302 0 : return 0;
1303 : }
1304 :
1305 0 : IMPL_LINK_NOARG(UpdateDialog, allHandler)
1306 : {
1307 0 : if (m_all.IsChecked())
1308 : {
1309 0 : m_update.Enable();
1310 0 : m_updates.Enable();
1311 0 : m_description.Enable();
1312 0 : m_descriptions.Enable();
1313 :
1314 0 : for (std::vector< UpdateDialog::Index* >::iterator i( m_ListboxEntries.begin() );
1315 0 : i != m_ListboxEntries.end(); ++i )
1316 : {
1317 0 : if ( (*i)->m_bIgnored || ( (*i)->m_eKind != ENABLED_UPDATE ) )
1318 0 : insertItem( (*i), SvLBoxButtonKind_disabledCheckbox );
1319 : }
1320 : }
1321 : else
1322 : {
1323 0 : for ( sal_uInt16 i = 0; i < m_updates.getItemCount(); )
1324 : {
1325 0 : UpdateDialog::Index const * p = static_cast< UpdateDialog::Index const * >( m_updates.GetEntryData(i) );
1326 0 : if ( p->m_bIgnored || ( p->m_eKind != ENABLED_UPDATE ) )
1327 : {
1328 0 : m_updates.RemoveEntry(i);
1329 : } else {
1330 0 : ++i;
1331 : }
1332 : }
1333 :
1334 0 : if (m_updates.getItemCount() == 0)
1335 : {
1336 0 : clearDescription();
1337 0 : m_update.Disable();
1338 0 : m_updates.Disable();
1339 0 : if (m_checking.IsVisible())
1340 0 : m_description.Disable();
1341 : else
1342 0 : showDescription(m_noInstallable,false);
1343 : }
1344 : }
1345 0 : return 0;
1346 : }
1347 :
1348 0 : IMPL_LINK_NOARG(UpdateDialog, okHandler)
1349 : {
1350 : //If users are going to update a shared extension then we need
1351 : //to warn them
1352 : typedef ::std::vector<UpdateData>::const_iterator CIT;
1353 0 : for (CIT i = m_enabledUpdates.begin(); i < m_enabledUpdates.end(); ++i)
1354 : {
1355 : OSL_ASSERT(i->aInstalledPackage.is());
1356 : //If the user has no write access to the shared folder then the update
1357 : //for a shared extension is disable, that is it cannot be in m_enabledUpdates
1358 : }
1359 :
1360 :
1361 0 : for (sal_uInt16 i = 0; i < m_updates.getItemCount(); ++i) {
1362 : UpdateDialog::Index const * p =
1363 : static_cast< UpdateDialog::Index const * >(
1364 0 : m_updates.GetEntryData(i));
1365 0 : if (p->m_eKind == ENABLED_UPDATE && m_updates.IsChecked(i)) {
1366 0 : m_updateData.push_back( m_enabledUpdates[ p->m_nIndex ] );
1367 : }
1368 : }
1369 :
1370 0 : EndDialog(RET_OK);
1371 0 : return 0;
1372 : }
1373 :
1374 0 : IMPL_LINK_NOARG(UpdateDialog, closeHandler) {
1375 0 : m_thread->stop();
1376 0 : EndDialog(RET_CANCEL);
1377 0 : return 0;
1378 : }
1379 :
1380 0 : IMPL_LINK( UpdateDialog, hyperlink_clicked, FixedHyperlink*, pHyperlink )
1381 : {
1382 0 : OUString sURL;
1383 0 : if ( pHyperlink )
1384 0 : sURL = OUString( pHyperlink->GetURL() );
1385 0 : if ( sURL.isEmpty() )
1386 0 : return 0;
1387 :
1388 : try
1389 : {
1390 : uno::Reference< com::sun::star::system::XSystemShellExecute > xSystemShellExecute(
1391 0 : com::sun::star::system::SystemShellExecute::create(m_context) );
1392 : //throws lang::IllegalArgumentException, system::SystemShellExecuteException
1393 0 : xSystemShellExecute->execute( sURL, OUString(), com::sun::star::system::SystemShellExecuteFlags::URIS_ONLY);
1394 : }
1395 0 : catch ( const uno::Exception& )
1396 : {
1397 : }
1398 :
1399 0 : return 1;
1400 : }
1401 :
1402 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|