1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
23 #include <sal/config.h>
27 #include <rtl/ref.hxx>
28 #include <com/sun/star/beans/Property.hpp>
29 #include "DAVSessionFactory.hxx"
30 #include <ucbhelper/providerhelper.hxx>
31 #include "PropertyMap.hxx"
33 namespace com::sun::star::lang
{
34 class XSingleServiceFactory
;
37 namespace http_dav_ucp
{
40 // UNO service name for the provider. This name will be used by the UCB to
41 // create instances of the provider.
42 #define WEBDAV_CONTENT_PROVIDER_SERVICE_NAME "com.sun.star.ucb.WebDAVContentProvider"
44 // URL scheme. This is the scheme the provider will be able to create
45 // contents for. The UCB will select the provider ( i.e. in order to create
46 // contents ) according to this scheme.
47 #define VNDSUNSTARWEBDAV_URL_SCHEME "vnd.sun.star.webdav"
48 #define VNDSUNSTARWEBDAVS_URL_SCHEME u"vnd.sun.star.webdavs"
49 #define HTTP_URL_SCHEME "http"
50 #define HTTPS_URL_SCHEME "https"
51 #define DAV_URL_SCHEME u"dav"
52 #define DAVS_URL_SCHEME u"davs"
53 #define WEBDAV_URL_SCHEME u"webdav"
54 #define WEBDAVS_URL_SCHEME u"webdavs"
56 #define HTTP_CONTENT_TYPE "application/" HTTP_URL_SCHEME "-content"
58 #define WEBDAV_CONTENT_TYPE HTTP_CONTENT_TYPE
59 #define WEBDAV_COLLECTION_TYPE "application/" VNDSUNSTARWEBDAV_URL_SCHEME "-collection"
62 class ContentProvider
: public ::ucbhelper::ContentProviderImplHelper
64 rtl::Reference
< DAVSessionFactory
> m_xDAVSessionFactory
;
65 std::unique_ptr
<PropertyMap
> m_pProps
;
68 explicit ContentProvider( const css::uno::Reference
< css::uno::XComponentContext
>& rContext
);
69 virtual ~ContentProvider() override
;
72 virtual css::uno::Any SAL_CALL
queryInterface( const css::uno::Type
& rType
) override
;
73 virtual void SAL_CALL
acquire()
75 virtual void SAL_CALL
release()
79 virtual css::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId() override
;
80 virtual css::uno::Sequence
< css::uno::Type
> SAL_CALL
getTypes() override
;
83 virtual OUString SAL_CALL
getImplementationName() override
;
84 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
85 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
88 virtual css::uno::Reference
< css::ucb::XContent
> SAL_CALL
89 queryContent( const css::uno::Reference
< css::ucb::XContentIdentifier
>& Identifier
) override
;
92 // Non-interface methods.
94 bool getProperty( const OUString
& rPropName
,
95 css::beans::Property
& rProp
,
96 bool bStrict
= false );
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */