/usr/include/Wt/Utils is in libwt-dev 3.3.3+dfsg-4.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | // This may look like C code, but it's really -*- C++ -*-
/*
* Copyright (C) 2011 Emweb bvba, Kessel-Lo, Belgium.
*
* See the LICENSE file for terms of use.
*/
#ifndef WT_UTILS_H_
#define WT_UTILS_H_
#include <Wt/WGlobal>
#include <string>
#include <vector>
/*! \file Utils
*/
namespace Wt {
/*! \brief Namespace with utility functions.
*
* This namespace contains functions for computing message digests
* with cryptographic hash functions (md5, sha1), and functions that
* implement encoding and decoding for common encodings.
*/
namespace Utils {
/*! \brief An enumeration for HTML encoding flags.
*/
enum HtmlEncodingFlag
{
//! \brief Encode new-lines as line breaks (<br>)
EncodeNewLines = 0x1
};
/*! \brief Computes an MD5 hash.
*
* This utility function computes an MD5 hash, and returns the raw
* (binary) hash value.
*
* \sa sha1()
*/
WT_API extern std::string md5(const std::string& data);
/*! \brief Computes a SHA-1 hash.
*
* This utility function computes a SHA-1 hash, and returns the raw
* (binary) hash value.
*
* \sa md5()
*/
WT_API extern std::string sha1(const std::string& data);
/*! \brief Performs Base64-encoding of data.
*
* This utility function implements a Base64 encoding (RFC 2045) of
* the \p data.
*
* When the crlf argument is true, a CRLF character will be added
* after each sequence of 76 characters.
*
* \sa base64Decode()
*/
WT_API extern std::string base64Encode(const std::string& data,
bool crlf = true);
/*! \brief Performs Base64-decoding of data.
*
* This utility function implements a Base64 decoding (RFC 2045) of
* the \p data. Illegal characters are discarded and skipped.
*
* \sa base64Encode()
*/
#ifndef WT_TARGET_JAVA
WT_API extern std::string base64Decode(const std::string& data);
#else
WT_API extern std::vector<unsigned char> base64Decode(const std::string& data);
#endif
/*! \brief Performs Hex-encoding of data.
*
* A hex-encoding outputs the value of every byte as as two-digit
* hexadecimal number.
*
* \sa hexDecode()
*/
WT_API extern std::string hexEncode(const std::string& data);
/*! \brief Performs Hex-decoding of data.
*
* Illegal characters are discarded and skipped.
*
* \sa hexEncode()
*/
WT_API extern std::string hexDecode(const std::string& data);
/*! \brief Performs HTML encoding of text.
*
* This utility function escapes characters so that the \p text can
* be embodied verbatim in a HTML text block.
*/
WT_API extern std::string htmlEncode(const std::string& text,
WFlags<HtmlEncodingFlag> flags = 0);
/*! \brief Performs HTML encoding of text.
*
* This utility function escapes characters so that the \p text can
* be embodied verbatim in a HTML text block.
*
* By default, newlines are ignored. By passing the EncodeNewLines
* flag, these may be encoded as line breaks (<br>).
*/
WT_API extern WString htmlEncode(const WString& text,
WFlags<HtmlEncodingFlag> flags = 0);
/*! \brief Performs Url encoding (aka percentage encoding).
*
* This utility function percent encodes a \p text so that it can be
* embodied verbatim in a URL (e.g. as a fragment).
*
* \note To url encode a unicode string, the de-facto standard
* practice is to encode a UTF-8 encoded string.
*
* \sa WString::toUTF8(), urlDecode()
*/
WT_API extern std::string urlEncode(const std::string& text);
/*! \brief Performs Url decoding.
*
* This utility function percent encodes a \p text so that it can be
* embodied verbatim in a URL (e.g. as a fragment).
*
* \note To url decode a unicode string, the de-facto standard
* practice is to interpret the string as a UTF-8 encoded string.
*
* \sa WString::fromUTF8(), urlEncode()
*/
WT_API extern std::string urlDecode(const std::string& text);
/*! \brief Remove tags/attributes from text that are not passive.
*
* This removes tags and attributes from XHTML-formatted text that do
* not simply display something but may trigger scripting, and could
* have been injected by a malicious user for Cross-Site Scripting
* (XSS).
*
* This method is used by the library to sanitize XHTML-formatted text
* set in WText, but it may also be useful outside the library to
* sanitize user content when directly using JavaScript.
*
* Modifies the \p text if needed. When the text is not proper XML,
* returns \c false.
*/
WT_API extern bool removeScript(WString& text);
/*! \brief Guess the image mime type from an image.
*
* This function examines the header of an image and tries to identify
* the image type.
*
* At the moment, it recognizes and returns as mime type :
* - image/png
* - image/jpeg
* - image/gif
* - image/bmp
*
* The header should contain (at least) the 25 first bytes of the image data.
*
* If no mime-type could be derived, an empty string is returned.
*
* \sa guessImageMimeTypeData()
*/
WT_API extern std::string
guessImageMimeTypeData(const std::vector<unsigned char>& header);
/*! \brief Guess the image mime type from an image.
*
* This function opens the image \p file, reads the first 25 bytes and calls
* guessImageMimeTypeData() to infer the mime type.
*/
WT_API extern std::string guessImageMimeType(const std::string& file);
}
}
W_DECLARE_OPERATORS_FOR_FLAGS(Wt::Utils::HtmlEncodingFlag)
#endif // WT_UTILS_H_
|