Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3368000
D8990.id30468.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
913 B
Referenced Files
None
Subscribers
None
D8990.id30468.diff
View Options
diff --git a/lib/facts/backup-service.js b/lib/facts/backup-service.js
new file mode 100644
--- /dev/null
+++ b/lib/facts/backup-service.js
@@ -0,0 +1,38 @@
+// @flow
+
+export type BackupServiceHTTPEndpoint = {
+ +path: string,
+ +method: 'GET' | 'POST',
+};
+
+const httpEndpoints = Object.freeze({
+ // endpoints with auth
+ UPLOAD_BACKUP: {
+ path: '/backups',
+ method: 'POST',
+ },
+ GET_USER_KEYS_AUTH: {
+ path: '/backups/:backup_id/user_keys',
+ method: 'GET',
+ },
+ GET_USER_DATA: {
+ path: '/backups/:backup_id/user_data',
+ method: 'GET',
+ },
+ // endpoints without auth
+ GET_BACKUP_ID: {
+ path: '/backups/latest/:username/backup_id',
+ method: 'GET',
+ },
+ GET_USER_KEYS: {
+ path: '/backups/latest/:username/user_keys',
+ method: 'GET',
+ },
+});
+
+const config = {
+ url: 'http://localhost:50052',
+ httpEndpoints,
+};
+
+export default config;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Nov 26, 5:42 PM (20 h, 59 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2585629
Default Alt Text
D8990.id30468.diff (913 B)
Attached To
Mode
D8990: [client-backup] add backup-service facts
Attached
Detach File
Event Timeline
Log In to Comment