summaryrefslogtreecommitdiffstats
path: root/src/web_service/web_backend.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-11-09 20:50:31 +0100
committerGitHub <noreply@github.com>2019-11-09 20:50:31 +0100
commit8714d40a776f655c644392bc2454ace98064144e (patch)
treed272c2bb1d28ea072d40a9c89b7b510b56229525 /src/web_service/web_backend.h
parentMerge pull request #3082 from ReinUsesLisp/fix-lockers (diff)
parentweb-service: Port citra's updated web_backend code. (diff)
downloadyuzu-8714d40a776f655c644392bc2454ace98064144e.tar
yuzu-8714d40a776f655c644392bc2454ace98064144e.tar.gz
yuzu-8714d40a776f655c644392bc2454ace98064144e.tar.bz2
yuzu-8714d40a776f655c644392bc2454ace98064144e.tar.lz
yuzu-8714d40a776f655c644392bc2454ace98064144e.tar.xz
yuzu-8714d40a776f655c644392bc2454ace98064144e.tar.zst
yuzu-8714d40a776f655c644392bc2454ace98064144e.zip
Diffstat (limited to '')
-rw-r--r--src/web_service/web_backend.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/web_service/web_backend.h b/src/web_service/web_backend.h
index c637e09df..04121f17e 100644
--- a/src/web_service/web_backend.h
+++ b/src/web_service/web_backend.h
@@ -46,6 +46,29 @@ public:
Common::WebResult DeleteJson(const std::string& path, const std::string& data,
bool allow_anonymous);
+ /**
+ * Gets a plain string from the specified path.
+ * @param path the URL segment after the host address.
+ * @param allow_anonymous If true, allow anonymous unauthenticated requests.
+ * @return the result of the request.
+ */
+ Common::WebResult GetPlain(const std::string& path, bool allow_anonymous);
+
+ /**
+ * Gets an PNG image from the specified path.
+ * @param path the URL segment after the host address.
+ * @param allow_anonymous If true, allow anonymous unauthenticated requests.
+ * @return the result of the request.
+ */
+ Common::WebResult GetImage(const std::string& path, bool allow_anonymous);
+
+ /**
+ * Requests an external JWT for the specific audience provided.
+ * @param audience the audience of the JWT requested.
+ * @return the result of the request.
+ */
+ Common::WebResult GetExternalJWT(const std::string& audience);
+
private:
struct Impl;
std::unique_ptr<Impl> impl;