tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / include / osl / security.hxx
blob6c928ea5d2463033b38ec4398c85e3e021dfbf76
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 * This file is part of LibreOffice published API.
24 #ifndef INCLUDED_OSL_SECURITY_HXX
25 #define INCLUDED_OSL_SECURITY_HXX
27 #include "sal/config.h"
29 #include <cstddef>
31 #include "rtl/ustring.hxx"
32 #include "osl/security_decl.hxx"
34 namespace osl
37 inline Security::Security()
39 m_handle = osl_getCurrentSecurity();
42 inline Security::~Security()
44 osl_freeSecurityHandle(m_handle);
47 inline bool Security::logonUser(const rtl::OUString& strName,
48 const rtl::OUString& strPasswd)
50 osl_freeSecurityHandle(m_handle);
52 m_handle = NULL;
54 return (osl_loginUser( strName.pData, strPasswd.pData, &m_handle)
55 == osl_Security_E_None);
58 inline bool Security::logonUser( const rtl::OUString& strName,
59 const rtl::OUString& strPasswd,
60 const rtl::OUString& strFileServer )
62 osl_freeSecurityHandle(m_handle);
64 m_handle = NULL;
66 return (osl_loginUserOnFileServer(strName.pData, strPasswd.pData, strFileServer.pData, &m_handle)
67 == osl_Security_E_None);
70 inline bool Security::getUserIdent( rtl::OUString& strIdent) const
72 return osl_getUserIdent( m_handle, &strIdent.pData );
76 inline bool Security::getUserName( rtl::OUString& strName, bool bIncludeDomain ) const
78 if (bIncludeDomain)
79 return osl_getUserName( m_handle, &strName.pData );
80 return osl_getShortUserName( m_handle, &strName.pData );
84 inline bool Security::getHomeDir( rtl::OUString& strDirectory) const
86 return osl_getHomeDir(m_handle, &strDirectory.pData );
90 inline bool Security::getConfigDir( rtl::OUString& strDirectory ) const
92 return osl_getConfigDir( m_handle, &strDirectory.pData );
95 inline bool Security::isAdministrator() const
97 return osl_isAdministrator(m_handle);
100 inline oslSecurity Security::getHandle() const
102 return m_handle;
108 #endif // INCLUDED_OSL_SECURITY_HXX
110 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */