mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-04 22:57:50 +03:00
http urls now work with Calibre web --------- Co-authored-by: Dave Allie <dave@daveallie.com>
29 lines
714 B
C++
29 lines
714 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace UrlUtils {
|
|
|
|
/**
|
|
* Check if URL uses HTTPS protocol
|
|
*/
|
|
bool isHttpsUrl(const std::string& url);
|
|
|
|
/**
|
|
* Prepend http:// if no protocol specified (server will redirect to https if needed)
|
|
*/
|
|
std::string ensureProtocol(const std::string& url);
|
|
|
|
/**
|
|
* Extract host with protocol from URL (e.g., "http://example.com" from "http://example.com/path")
|
|
*/
|
|
std::string extractHost(const std::string& url);
|
|
|
|
/**
|
|
* Build full URL from server URL and path.
|
|
* If path starts with /, it's an absolute path from the host root.
|
|
* Otherwise, it's relative to the server URL.
|
|
*/
|
|
std::string buildUrl(const std::string& serverUrl, const std::string& path);
|
|
|
|
} // namespace UrlUtils
|