LibreOffice Module forms (master) 1
submission_post.cxx
Go to the documentation of this file.
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 <memory>
22
23#include "submission_post.hxx"
24
25#include <osl/diagnose.h>
26#include <ucbhelper/content.hxx>
28#include <com/sun/star/ucb/PostCommandArgument2.hpp>
30
31using namespace css::uno;
32using namespace css::ucb;
33using namespace css::task;
34using namespace css::io;
35using namespace osl;
36using namespace ucbhelper;
37
38
39CSubmissionPost::CSubmissionPost(std::u16string_view aURL, const css::uno::Reference< css::xml::dom::XDocumentFragment >& aFragment)
40 : CSubmission(aURL, aFragment)
41{
42}
43
44CSubmission::SubmissionResult CSubmissionPost::submit(const css::uno::Reference< css::task::XInteractionHandler >& aInteractionHandler)
45{
46 // PUT always uses application/xml
47 css::uno::Reference< XCommandEnvironment > aEnvironment;
48 std::unique_ptr< CSerialization > apSerialization(createSerialization(aInteractionHandler,aEnvironment));
49
50 try {
52
53 // use post command
54 PostCommandArgument2 aPostArgument;
55 aPostArgument.Source = apSerialization->getInputStream();
56 css::uno::Reference< XActiveDataSink > aSink(new ucbhelper::ActiveDataSink);
57 aPostArgument.Sink = aSink;
58 aPostArgument.MediaType = "application/xml";
59 aPostArgument.Referer.clear();
60 Any aCommandArgument;
61 aCommandArgument <<= aPostArgument;
62 aContent.executeCommand( "post", aCommandArgument);
63
64 try {
65 m_aResultStream = aSink->getInputStream();
66 } catch (const Exception&) {
67 OSL_FAIL("Cannot open reply stream from content");
68 }
69 } catch (const Exception&)
70 {
71 TOOLS_WARN_EXCEPTION( "forms.misc", "Exception during UCB operation.");
72 return UNKNOWN_ERROR;
73 }
74
75 return SUCCESS;
76}
77
78/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
CSubmissionPost(std::u16string_view aURL, const css::uno::Reference< css::xml::dom::XDocumentFragment > &aFragment)
virtual SubmissionResult submit(const css::uno::Reference< css::task::XInteractionHandler > &aInteractionHandler) override
INetURLObject m_aURLObj
::std::unique_ptr< CSerialization > createSerialization(const css::uno::Reference< css::task::XInteractionHandler > &aHandler, css::uno::Reference< css::ucb::XCommandEnvironment > &_rOutEnv)
Definition: replace.cxx:108
css::uno::Reference< css::io::XInputStream > m_aResultStream
OUString GetMainURL(DecodeMechanism eMechanism, rtl_TextEncoding eCharset=RTL_TEXTENCODING_UTF8) const
css::uno::Any executeCommand(const OUString &rCommandName, const css::uno::Any &rCommandArgument)
#define TOOLS_WARN_EXCEPTION(area, stream)
URL aURL
@ Exception
Reference< XComponentContext > getProcessComponentContext()