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 : #include <unotools/pathoptions.hxx>
21 : #include <unotools/useroptions.hxx>
22 : #include <svl/adrparse.hxx>
23 :
24 : #include "hlinettp.hxx"
25 : #include "hlmarkwn_def.hxx"
26 :
27 : sal_Char const sAnonymous[] = "anonymous";
28 : sal_Char const sHTTPScheme[] = INET_HTTP_SCHEME;
29 : sal_Char const sFTPScheme[] = INET_FTP_SCHEME;
30 :
31 : /*************************************************************************
32 : |*
33 : |* Constructor / Destructor
34 : |*
35 : |************************************************************************/
36 :
37 0 : SvxHyperlinkInternetTp::SvxHyperlinkInternetTp ( vcl::Window *pParent,
38 : IconChoiceDialog* pDlg,
39 : const SfxItemSet& rItemSet)
40 : : SvxHyperlinkTabPageBase ( pParent, pDlg, "HyperlinkInternetPage", "cui/ui/hyperlinkinternetpage.ui",
41 : rItemSet ) ,
42 0 : mbMarkWndOpen ( false )
43 : {
44 0 : get(m_pRbtLinktypInternet, "linktyp_internet");
45 0 : get(m_pRbtLinktypFTP, "linktyp_ftp");
46 0 : get(m_pCbbTarget, "target");
47 0 : m_pCbbTarget->SetSmartProtocol(INetProtocol::Http);
48 0 : get(m_pBtBrowse, "browse");
49 0 : m_pBtBrowse->SetModeImage(Image(CUI_RES (RID_SVXBMP_BROWSE)));
50 0 : get(m_pFtLogin, "login_label");
51 0 : get(m_pEdLogin, "login");
52 0 : get(m_pFtPassword, "password_label");
53 0 : get(m_pEdPassword, "password");
54 0 : get(m_pCbAnonymous, "anonymous");
55 :
56 : // Disable display of bitmap names.
57 0 : m_pBtBrowse->EnableTextDisplay (false);
58 :
59 0 : InitStdControls();
60 :
61 0 : m_pCbbTarget->Show();
62 0 : m_pCbbTarget->SetHelpId( HID_HYPERDLG_INET_PATH );
63 :
64 0 : SetExchangeSupport ();
65 :
66 :
67 : // set defaults
68 0 : m_pRbtLinktypInternet->Check ();
69 0 : m_pBtBrowse->Enable( true );
70 :
71 :
72 : // set handlers
73 0 : Link<> aLink( LINK ( this, SvxHyperlinkInternetTp, Click_SmartProtocol_Impl ) );
74 0 : m_pRbtLinktypInternet->SetClickHdl( aLink );
75 0 : m_pRbtLinktypFTP->SetClickHdl ( aLink );
76 0 : m_pCbAnonymous->SetClickHdl ( LINK ( this, SvxHyperlinkInternetTp, ClickAnonymousHdl_Impl ) );
77 0 : m_pBtBrowse->SetClickHdl ( LINK ( this, SvxHyperlinkInternetTp, ClickBrowseHdl_Impl ) );
78 0 : m_pEdLogin->SetModifyHdl ( LINK ( this, SvxHyperlinkInternetTp, ModifiedLoginHdl_Impl ) );
79 0 : m_pCbbTarget->SetLoseFocusHdl ( LINK ( this, SvxHyperlinkInternetTp, LostFocusTargetHdl_Impl ) );
80 0 : m_pCbbTarget->SetModifyHdl ( LINK ( this, SvxHyperlinkInternetTp, ModifiedTargetHdl_Impl ) );
81 0 : maTimer.SetTimeoutHdl ( LINK ( this, SvxHyperlinkInternetTp, TimeoutHdl_Impl ) );
82 0 : }
83 :
84 0 : SvxHyperlinkInternetTp::~SvxHyperlinkInternetTp()
85 : {
86 0 : disposeOnce();
87 0 : }
88 :
89 0 : void SvxHyperlinkInternetTp::dispose()
90 : {
91 0 : m_pRbtLinktypInternet.clear();
92 0 : m_pRbtLinktypFTP.clear();
93 0 : m_pCbbTarget.clear();
94 0 : m_pBtBrowse.clear();
95 0 : m_pFtLogin.clear();
96 0 : m_pEdLogin.clear();
97 0 : m_pFtPassword.clear();
98 0 : m_pEdPassword.clear();
99 0 : m_pCbAnonymous.clear();
100 0 : SvxHyperlinkTabPageBase::dispose();
101 0 : }
102 :
103 : /*************************************************************************
104 : |*
105 : |* Fill the all dialog-controls except controls in groupbox "more..."
106 : |*
107 : |************************************************************************/
108 :
109 0 : void SvxHyperlinkInternetTp::FillDlgFields(const OUString& rStrURL)
110 : {
111 0 : INetURLObject aURL(rStrURL);
112 0 : OUString aStrScheme(GetSchemeFromURL(rStrURL));
113 :
114 : // set additional controls for FTP: Username / Password
115 0 : if (aStrScheme.startsWith(sFTPScheme))
116 : {
117 0 : if ( aURL.GetUser().toAsciiLowerCase().startsWith( sAnonymous ) )
118 0 : setAnonymousFTPUser();
119 : else
120 0 : setFTPUser(aURL.GetUser(), aURL.GetPass());
121 :
122 : //do not show password and user in url
123 0 : if(!aURL.GetUser().isEmpty() || !aURL.GetPass().isEmpty() )
124 0 : aURL.SetUserAndPass(aEmptyStr,aEmptyStr);
125 : }
126 :
127 : // set URL-field
128 : // Show the scheme, #72740
129 0 : if ( aURL.GetProtocol() != INetProtocol::NotValid )
130 0 : m_pCbbTarget->SetText( aURL.GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS ) );
131 : else
132 0 : m_pCbbTarget->SetText(rStrURL); // #77696#
133 :
134 0 : SetScheme(aStrScheme);
135 0 : }
136 :
137 0 : void SvxHyperlinkInternetTp::setAnonymousFTPUser()
138 : {
139 0 : m_pEdLogin->SetText(OUString(sAnonymous));
140 0 : SvAddressParser aAddress( SvtUserOptions().GetEmail() );
141 0 : m_pEdPassword->SetText( aAddress.Count() ? aAddress.GetEmailAddress(0) : OUString() );
142 :
143 0 : m_pFtLogin->Disable ();
144 0 : m_pFtPassword->Disable ();
145 0 : m_pEdLogin->Disable ();
146 0 : m_pEdPassword->Disable ();
147 0 : m_pCbAnonymous->Check();
148 0 : }
149 :
150 0 : void SvxHyperlinkInternetTp::setFTPUser(const OUString& rUser, const OUString& rPassword)
151 : {
152 0 : m_pEdLogin->SetText ( rUser );
153 0 : m_pEdPassword->SetText ( rPassword );
154 :
155 0 : m_pFtLogin->Enable ();
156 0 : m_pFtPassword->Enable ();
157 0 : m_pEdLogin->Enable ();
158 0 : m_pEdPassword->Enable ();
159 0 : m_pCbAnonymous->Check(false);
160 0 : }
161 :
162 : /*************************************************************************
163 : |*
164 : |* retrieve and prepare data from dialog-fields
165 : |*
166 : |************************************************************************/
167 :
168 0 : void SvxHyperlinkInternetTp::GetCurentItemData ( OUString& rStrURL, OUString& aStrName,
169 : OUString& aStrIntName, OUString& aStrFrame,
170 : SvxLinkInsertMode& eMode )
171 : {
172 0 : rStrURL = CreateAbsoluteURL();
173 0 : GetDataFromCommonFields( aStrName, aStrIntName, aStrFrame, eMode );
174 0 : }
175 :
176 0 : OUString SvxHyperlinkInternetTp::CreateAbsoluteURL() const
177 : {
178 : // erase leading and trailing whitespaces
179 0 : OUString aStrURL( m_pCbbTarget->GetText().trim() );
180 :
181 0 : INetURLObject aURL(aStrURL);
182 :
183 0 : if( aURL.GetProtocol() == INetProtocol::NotValid )
184 : {
185 0 : aURL.SetSmartProtocol( GetSmartProtocolFromButtons() );
186 0 : aURL.SetSmartURL(aStrURL);
187 : }
188 :
189 : // username and password for ftp-url
190 0 : if( aURL.GetProtocol() == INetProtocol::Ftp && !m_pEdLogin->GetText().isEmpty() )
191 0 : aURL.SetUserAndPass ( m_pEdLogin->GetText(), m_pEdPassword->GetText() );
192 :
193 0 : if ( aURL.GetProtocol() != INetProtocol::NotValid )
194 0 : return aURL.GetMainURL( INetURLObject::DECODE_TO_IURI );
195 : else //#105788# always create a URL even if it is not valid
196 0 : return aStrURL;
197 : }
198 :
199 : /*************************************************************************
200 : |*
201 : |* static method to create Tabpage
202 : |*
203 : |************************************************************************/
204 :
205 0 : VclPtr<IconChoicePage> SvxHyperlinkInternetTp::Create( vcl::Window* pWindow, IconChoiceDialog* pDlg, const SfxItemSet& rItemSet )
206 : {
207 0 : return VclPtr<SvxHyperlinkInternetTp>::Create( pWindow, pDlg, rItemSet );
208 : }
209 :
210 : /*************************************************************************
211 : |*
212 : |* Set initial focus
213 : |*
214 : |************************************************************************/
215 :
216 0 : void SvxHyperlinkInternetTp::SetInitFocus()
217 : {
218 0 : m_pCbbTarget->GrabFocus();
219 0 : }
220 :
221 : /*************************************************************************
222 : |*
223 : |* Contents of editfield "Target" modified
224 : |*
225 : |************************************************************************/
226 :
227 0 : IMPL_LINK_NOARG(SvxHyperlinkInternetTp, ModifiedTargetHdl_Impl)
228 : {
229 0 : OUString aScheme = GetSchemeFromURL( m_pCbbTarget->GetText() );
230 0 : if( !aScheme.isEmpty() )
231 0 : SetScheme( aScheme );
232 :
233 : // start timer
234 0 : maTimer.SetTimeout( 2500 );
235 0 : maTimer.Start();
236 :
237 0 : return 0L;
238 : }
239 :
240 : /*************************************************************************
241 : |*
242 : |* If target-field was modify, to browse the new doc after timeout
243 : |*
244 : |************************************************************************/
245 :
246 0 : IMPL_LINK_NOARG_TYPED(SvxHyperlinkInternetTp, TimeoutHdl_Impl, Timer *, void)
247 : {
248 0 : RefreshMarkWindow();
249 0 : }
250 :
251 : /*************************************************************************
252 : |*
253 : |* Contents of editfield "Login" modified
254 : |*
255 : |************************************************************************/
256 :
257 0 : IMPL_LINK_NOARG(SvxHyperlinkInternetTp, ModifiedLoginHdl_Impl)
258 : {
259 0 : OUString aStrLogin ( m_pEdLogin->GetText() );
260 0 : if ( aStrLogin.equalsIgnoreAsciiCase( sAnonymous ) )
261 : {
262 0 : m_pCbAnonymous->Check();
263 0 : ClickAnonymousHdl_Impl(NULL);
264 : }
265 :
266 0 : return 0L;
267 : }
268 :
269 : /*************************************************************************
270 : |************************************************************************/
271 :
272 0 : void SvxHyperlinkInternetTp::SetScheme(const OUString& rScheme)
273 : {
274 : //if rScheme is empty or unknown the default beaviour is like it where HTTP
275 0 : bool bFTP = rScheme.startsWith(sFTPScheme);
276 0 : bool bInternet = !(bFTP);
277 :
278 : //update protocol button selection:
279 0 : m_pRbtLinktypFTP->Check(bFTP);
280 0 : m_pRbtLinktypInternet->Check(bInternet);
281 :
282 : //update target:
283 0 : RemoveImproperProtocol(rScheme);
284 0 : m_pCbbTarget->SetSmartProtocol( GetSmartProtocolFromButtons() );
285 :
286 : //show/hide special fields for FTP:
287 0 : m_pFtLogin->Show( bFTP );
288 0 : m_pFtPassword->Show( bFTP );
289 0 : m_pEdLogin->Show( bFTP );
290 0 : m_pEdPassword->Show( bFTP );
291 0 : m_pCbAnonymous->Show( bFTP );
292 :
293 : //update 'link target in document'-window and opening-button
294 0 : if (rScheme.startsWith(sHTTPScheme) || rScheme.isEmpty())
295 : {
296 0 : if ( mbMarkWndOpen )
297 0 : ShowMarkWnd ();
298 : }
299 : else
300 : {
301 : //disable for https and ftp
302 0 : if ( mbMarkWndOpen )
303 0 : HideMarkWnd ();
304 : }
305 0 : }
306 :
307 : /*************************************************************************
308 : |*
309 : |* Remove protocol if it does not fit to the current button selection
310 : |*
311 : |************************************************************************/
312 :
313 0 : void SvxHyperlinkInternetTp::RemoveImproperProtocol(const OUString& aProperScheme)
314 : {
315 0 : OUString aStrURL ( m_pCbbTarget->GetText() );
316 0 : if ( aStrURL != aEmptyStr )
317 : {
318 0 : OUString aStrScheme(GetSchemeFromURL(aStrURL));
319 0 : if ( !aStrScheme.isEmpty() && aStrScheme != aProperScheme )
320 : {
321 0 : aStrURL = aStrURL.copy( aStrScheme.getLength() );
322 0 : m_pCbbTarget->SetText ( aStrURL );
323 0 : }
324 0 : }
325 0 : }
326 :
327 0 : OUString SvxHyperlinkInternetTp::GetSchemeFromButtons() const
328 : {
329 0 : if( m_pRbtLinktypFTP->IsChecked() )
330 0 : return OUString(INET_FTP_SCHEME);
331 0 : return OUString(INET_HTTP_SCHEME);
332 : }
333 :
334 0 : INetProtocol SvxHyperlinkInternetTp::GetSmartProtocolFromButtons() const
335 : {
336 0 : if( m_pRbtLinktypFTP->IsChecked() )
337 : {
338 0 : return INetProtocol::Ftp;
339 : }
340 0 : return INetProtocol::Http;
341 : }
342 :
343 : /*************************************************************************
344 : |*
345 : |* Click on Radiobutton : Internet or FTP
346 : |*
347 : |************************************************************************/
348 :
349 0 : IMPL_LINK_NOARG(SvxHyperlinkInternetTp, Click_SmartProtocol_Impl)
350 : {
351 0 : OUString aScheme = GetSchemeFromButtons();
352 0 : SetScheme(aScheme);
353 0 : return 0L;
354 : }
355 :
356 : /*************************************************************************
357 : |*
358 : |* Click on Checkbox : Anonymous user
359 : |*
360 : |************************************************************************/
361 :
362 0 : IMPL_LINK_NOARG(SvxHyperlinkInternetTp, ClickAnonymousHdl_Impl)
363 : {
364 : // disable login-editfields if checked
365 0 : if ( m_pCbAnonymous->IsChecked() )
366 : {
367 0 : if ( m_pEdLogin->GetText().toAsciiLowerCase().startsWith( sAnonymous ) )
368 : {
369 0 : maStrOldUser = aEmptyStr;
370 0 : maStrOldPassword = aEmptyStr;
371 : }
372 : else
373 : {
374 0 : maStrOldUser = m_pEdLogin->GetText();
375 0 : maStrOldPassword = m_pEdPassword->GetText();
376 : }
377 :
378 0 : setAnonymousFTPUser();
379 : }
380 : else
381 0 : setFTPUser(maStrOldUser, maStrOldPassword);
382 :
383 0 : return 0L;
384 : }
385 :
386 : /*************************************************************************
387 : |*
388 : |* Combobox Target lost the focus
389 : |*
390 : |************************************************************************/
391 :
392 0 : IMPL_LINK_NOARG(SvxHyperlinkInternetTp, LostFocusTargetHdl_Impl)
393 : {
394 0 : RefreshMarkWindow();
395 0 : return 0L;
396 : }
397 :
398 : /*************************************************************************
399 : |*
400 : |* Click on imagebutton : Browse
401 : |*
402 : |************************************************************************/
403 :
404 0 : IMPL_LINK_NOARG(SvxHyperlinkInternetTp, ClickBrowseHdl_Impl)
405 : {
406 :
407 : // Open URL if available
408 :
409 0 : SfxStringItem aName( SID_FILE_NAME, OUString("http://") );
410 0 : SfxStringItem aRefererItem( SID_REFERER, OUString("private:user") );
411 0 : SfxBoolItem aNewView( SID_OPEN_NEW_VIEW, true );
412 0 : SfxBoolItem aSilent( SID_SILENT, true );
413 0 : SfxBoolItem aReadOnly( SID_DOC_READONLY, true );
414 :
415 0 : SfxBoolItem aBrowse( SID_BROWSE, true );
416 :
417 0 : const SfxPoolItem *ppItems[] = { &aName, &aNewView, &aSilent, &aReadOnly, &aRefererItem, &aBrowse, NULL };
418 0 : static_cast<SvxHpLinkDlg*>(mpDialog.get())->GetBindings()->Execute( SID_OPENDOC, ppItems, 0, SfxCallMode::ASYNCHRON | SfxCallMode::RECORD );
419 :
420 0 : return 0L;
421 : }
422 :
423 0 : void SvxHyperlinkInternetTp::RefreshMarkWindow()
424 : {
425 0 : if ( m_pRbtLinktypInternet->IsChecked() && IsMarkWndVisible() )
426 : {
427 0 : EnterWait();
428 0 : OUString aStrURL( CreateAbsoluteURL() );
429 0 : if ( aStrURL != aEmptyStr )
430 0 : mpMarkWnd->RefreshTree ( aStrURL );
431 : else
432 0 : mpMarkWnd->SetError( LERR_DOCNOTOPEN );
433 0 : LeaveWait();
434 : }
435 :
436 0 : }
437 :
438 : /*************************************************************************
439 : |*
440 : |* Get String from Bookmark-Wnd
441 : |*
442 : |************************************************************************/
443 :
444 0 : void SvxHyperlinkInternetTp::SetMarkStr ( const OUString& aStrMark )
445 : {
446 0 : OUString aStrURL ( m_pCbbTarget->GetText() );
447 :
448 0 : const sal_Unicode sUHash = '#';
449 0 : sal_Int32 nPos = aStrURL.lastIndexOf( sUHash );
450 :
451 0 : if( nPos != -1 )
452 0 : aStrURL = aStrURL.copy(0, nPos);
453 :
454 0 : aStrURL += OUStringLiteral1<sUHash>() + aStrMark;
455 :
456 0 : m_pCbbTarget->SetText ( aStrURL );
457 0 : }
458 :
459 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|