14cfff500e
because this is often on a hot path, and we can avoid the splitting and joining of strings like this. Change-Id: Ia36047209368ca53431178c2e8723a18cfe8260a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119220 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
122 lines
5.2 KiB
C++
122 lines
5.2 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#include "passworddlg.hxx"
|
|
#include <strings.hrc>
|
|
|
|
#include <unotools/resmgr.hxx>
|
|
#include <unotools/configmgr.hxx>
|
|
#include <tools/urlobj.hxx>
|
|
#include <tools/debug.hxx>
|
|
#include <vcl/svapp.hxx>
|
|
#include <vcl/weld.hxx>
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
PasswordDialog::PasswordDialog(weld::Window* pParent,
|
|
task::PasswordRequestMode nDialogMode, const std::locale& rResLocale,
|
|
const OUString& aDocURL, bool bOpenToModify, bool bIsSimplePasswordRequest)
|
|
: GenericDialogController(pParent, "uui/ui/password.ui", "PasswordDialog")
|
|
, m_xFTPassword(m_xBuilder->weld_label("newpassFT"))
|
|
, m_xEDPassword(m_xBuilder->weld_entry("newpassEntry"))
|
|
, m_xFTConfirmPassword(m_xBuilder->weld_label("confirmpassFT"))
|
|
, m_xEDConfirmPassword(m_xBuilder->weld_entry("confirmpassEntry"))
|
|
, m_xOKBtn(m_xBuilder->weld_button("ok"))
|
|
, nMinLen(1)
|
|
, aPasswdMismatch(Translate::get(STR_PASSWORD_MISMATCH, rResLocale))
|
|
{
|
|
// tdf#115964 we can be launched before the parent has resized to its final size
|
|
m_xDialog->set_centered_on_parent(true);
|
|
|
|
if( nDialogMode == task::PasswordRequestMode_PASSWORD_REENTER )
|
|
{
|
|
TranslateId pOpenToModifyErrStrId = bOpenToModify ? STR_ERROR_PASSWORD_TO_MODIFY_WRONG : STR_ERROR_PASSWORD_TO_OPEN_WRONG;
|
|
TranslateId pErrStrId = bIsSimplePasswordRequest ? STR_ERROR_SIMPLE_PASSWORD_WRONG : pOpenToModifyErrStrId;
|
|
OUString aErrorMsg(Translate::get(pErrStrId, rResLocale));
|
|
std::unique_ptr<weld::MessageDialog> xBox(Application::CreateMessageDialog(pParent,
|
|
VclMessageType::Warning, VclButtonsType::Ok, aErrorMsg));
|
|
xBox->run();
|
|
}
|
|
|
|
// default settings for enter password or reenter passwd...
|
|
OUString aTitle(Translate::get(STR_TITLE_ENTER_PASSWORD, rResLocale));
|
|
m_xFTConfirmPassword->hide();
|
|
m_xEDConfirmPassword->hide();
|
|
m_xFTConfirmPassword->set_sensitive(false);
|
|
m_xEDConfirmPassword->set_sensitive(false);
|
|
|
|
// settings for create password
|
|
if (nDialogMode == task::PasswordRequestMode_PASSWORD_CREATE)
|
|
{
|
|
aTitle = Translate::get(STR_TITLE_CREATE_PASSWORD, rResLocale);
|
|
|
|
m_xFTConfirmPassword->set_label(Translate::get(STR_CONFIRM_SIMPLE_PASSWORD, rResLocale));
|
|
|
|
m_xFTConfirmPassword->show();
|
|
m_xEDConfirmPassword->show();
|
|
m_xFTConfirmPassword->set_sensitive(true);
|
|
m_xEDConfirmPassword->set_sensitive(true);
|
|
}
|
|
|
|
m_xDialog->set_title(aTitle);
|
|
|
|
TranslateId pStrId = bOpenToModify ? STR_ENTER_PASSWORD_TO_MODIFY : STR_ENTER_PASSWORD_TO_OPEN;
|
|
OUString aMessage(Translate::get(pStrId, rResLocale));
|
|
INetURLObject url(aDocURL);
|
|
|
|
// tdf#66553 - add file name to title bar for password managers
|
|
OUString aFileName = url.getName(INetURLObject::LAST_SEGMENT, true,
|
|
INetURLObject::DecodeMechanism::Unambiguous);
|
|
if (!aFileName.isEmpty())
|
|
aFileName += " - " + utl::ConfigManager::getProductName();
|
|
m_xDialog->set_title(aTitle + " - " + aFileName);
|
|
|
|
aMessage += url.HasError()
|
|
? aDocURL : url.GetMainURL(INetURLObject::DecodeMechanism::Unambiguous);
|
|
m_xFTPassword->set_label(aMessage);
|
|
|
|
if (bIsSimplePasswordRequest)
|
|
{
|
|
DBG_ASSERT( aDocURL.isEmpty(), "A simple password request should not have a document URL! Use document password request instead." );
|
|
m_xFTPassword->set_label(Translate::get(STR_ENTER_SIMPLE_PASSWORD, rResLocale));
|
|
}
|
|
|
|
m_xOKBtn->connect_clicked(LINK(this, PasswordDialog, OKHdl_Impl));
|
|
}
|
|
|
|
IMPL_LINK_NOARG(PasswordDialog, OKHdl_Impl, weld::Button&, void)
|
|
{
|
|
bool bEDPasswdValid = m_xEDPassword->get_text().getLength() >= nMinLen;
|
|
bool bPasswdMismatch = m_xEDConfirmPassword->get_text() != m_xEDPassword->get_text();
|
|
bool bValid = (!m_xEDConfirmPassword->get_visible() && bEDPasswdValid) ||
|
|
(m_xEDConfirmPassword->get_visible() && bEDPasswdValid && !bPasswdMismatch);
|
|
|
|
if (m_xEDConfirmPassword->get_visible() && bPasswdMismatch)
|
|
{
|
|
std::unique_ptr<weld::MessageDialog> xBox(Application::CreateMessageDialog(m_xDialog.get(),
|
|
VclMessageType::Warning, VclButtonsType::Ok,
|
|
aPasswdMismatch));
|
|
xBox->run();
|
|
}
|
|
else if (bValid)
|
|
m_xDialog->response(RET_OK);
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
|
|