blob: e1d4b63a3fde259bb4e869391b738c717891c552 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* 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/.
*/
// WOPI proof management
#ifndef INCLUDED_PROOFKEY_HPP
#define INCLUDED_PROOFKEY_HPP
#include <string>
#include <utility>
#include <vector>
typedef std::vector<std::pair<std::string, std::string>> VecOfStringPairs;
// Returns pairs <header_name, header_value> to add to request
// The headers returned are X-WOPI-TimeStamp, X-WOPI-Proof
// If no proof key, returns empty vector
// Both parameters are utf-8-encoded strings
VecOfStringPairs GetProofHeaders(const std::string& access_token, const std::string& uri);
// Returns pairs <attribute, value> to set in proof-key element in discovery xml.
// If no proof key, returns empty vector
const VecOfStringPairs& GetProofKeyAttributes();
#endif // INCLUDED_PROOFKEY_HPP
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|