cd3888483dbaba088fa9bb1d296be2b634d18b21
[arvados-workbench2.git] / src / views-components / webdav-s3-dialog / webdav-s3-dialog.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from "react";
6 import { Dialog, DialogActions, Button, StyleRulesCallback, WithStyles, withStyles, CardHeader, Tab, Tabs } from '@material-ui/core';
7 import { withDialog } from "~/store/dialog/with-dialog";
8 import { COLLECTION_WEBDAV_S3_DIALOG_NAME, WebDavS3InfoDialogData } from '~/store/collections/collection-info-actions';
9 import { WithDialogProps } from '~/store/dialog/with-dialog';
10 import { compose } from 'redux';
11 import { DetailsAttribute } from "~/components/details-attribute/details-attribute";
12
13 type CssRules = 'details';
14
15 const styles: StyleRulesCallback<CssRules> = theme => ({
16     details: {
17         marginLeft: theme.spacing.unit * 3,
18         marginRight: theme.spacing.unit * 3,
19     }
20 });
21
22 interface TabPanelData {
23     children: React.ReactElement<any>[];
24     value: number;
25     index: number;
26 }
27
28 function TabPanel(props: TabPanelData) {
29     const { children, value, index } = props;
30
31     return (
32         <div
33             role="tabpanel"
34             hidden={value !== index}
35             id={`simple-tabpanel-${index}`}
36             aria-labelledby={`simple-tab-${index}`}
37         >
38             {value === index && children}
39         </div>
40     );
41 }
42
43 export const WebDavS3InfoDialog = compose(
44     withDialog(COLLECTION_WEBDAV_S3_DIALOG_NAME),
45     withStyles(styles),
46 )(
47     (props: WithDialogProps<WebDavS3InfoDialogData> & WithStyles<CssRules>) => {
48         if (!props.data.downloadUrl) { return null; }
49
50         let winDav;
51         let cyberDav;
52
53         if (props.data.collectionsUrl.indexOf("*") > -1) {
54             const withuuid = props.data.collectionsUrl.replace("*", props.data.uuid);
55             winDav = new URL(withuuid);
56             cyberDav = new URL(withuuid);
57         } else {
58             winDav = new URL(props.data.downloadUrl);
59             cyberDav = new URL(props.data.downloadUrl);
60             winDav.pathname = `/by_id/${props.data.uuid}/`;
61             cyberDav.pathname = `/by_id/${props.data.uuid}/`;
62         }
63
64         cyberDav.protocol = { "http:": "dav:", "https:": "davs:" }[cyberDav.protocol];
65
66         const s3endpoint = new URL(props.data.collectionsUrl.replace(/\/\*(--[^.]+)?\./, "/"));
67
68         const sp = props.data.token.split("/");
69         let tokenUuid;
70         let tokenSecret;
71         if (sp.length === 3 && sp[0] === "v2" && props.data.homeCluster === props.data.localCluster) {
72             tokenUuid = sp[1];
73             tokenSecret = sp[2];
74         } else {
75             tokenUuid = props.data.token.replace(/\//g, "_");
76             tokenSecret = tokenUuid;
77         }
78
79         return <Dialog
80             open={props.open}
81             maxWidth="md"
82             onClose={props.closeDialog}
83             style={{ alignSelf: 'stretch' }}>
84             <CardHeader
85                 title={`WebDAV and S3`} />
86             <div className={props.classes.details} >
87                 <Tabs value={props.data.activeTab} onChange={props.data.setActiveTab}>
88                     <Tab key="cyberduck" label="Cyberduck/Mountain Duck or Gnome Files" />
89                     <Tab key="windows" label="Windows or MacOS" />
90                     <Tab key="s3" label="Using an S3 client" />
91                 </Tabs>
92
93                 <TabPanel index={1} value={props.data.activeTab}>
94                     <h2>Settings</h2>
95
96                     <DetailsAttribute
97                         label='Internet address'
98                         value={winDav.toString()}
99                         copyValue={winDav.toString()} />
100
101                     <DetailsAttribute
102                         label='Username'
103                         value={props.data.username}
104                         copyValue={props.data.username} />
105
106                     <DetailsAttribute
107                         label='Password'
108                         value={props.data.token}
109                         copyValue={props.data.token} />
110
111                     <h3>Windows</h3>
112                     <ol>
113                         <li>Open File Explorer</li>
114                         <li>Click on "This PC", then go to Computer &rarr; Add a Network Location</li>
115                         <li>Click Next, then choose "Add a custom network location", then click Next</li>
116                     </ol>
117
118                     <h3>MacOS</h3>
119                     <ol>
120                         <li>Open Finder</li>
121                         <li>Click Go &rarr; Connect to server</li>
122                     </ol>
123                 </TabPanel>
124
125                 <TabPanel index={0} value={props.data.activeTab}>
126                     <DetailsAttribute
127                         label='Server'
128                         value={<a href={cyberDav.toString()}>{cyberDav.toString()}</a>}
129                         copyValue={cyberDav.toString()} />
130
131                     <DetailsAttribute
132                         label='Username'
133                         value={props.data.username}
134                         copyValue={props.data.username} />
135
136                     <DetailsAttribute
137                         label='Password'
138                         value={props.data.token}
139                         copyValue={props.data.token} />
140
141                     <h3>Gnome</h3>
142                     <ol>
143                         <li>Open Files</li>
144                         <li>Select +Other Locations</li>
145                         <li>Connect to Server &rarr; Enter server address</li>
146                     </ol>
147
148                 </TabPanel>
149
150                 <TabPanel index={2} value={props.data.activeTab}>
151                     <DetailsAttribute
152                         label='Endpoint'
153                         value={s3endpoint.host}
154                         copyValue={s3endpoint.host} />
155
156                     <DetailsAttribute
157                         label='Bucket'
158                         value={props.data.uuid}
159                         copyValue={props.data.uuid} />
160
161                     <DetailsAttribute
162                         label='Access Key'
163                         value={tokenUuid}
164                         copyValue={tokenUuid} />
165
166                     <DetailsAttribute
167                         label='Secret Key'
168                         value={tokenSecret}
169                         copyValue={tokenSecret} />
170
171                 </TabPanel>
172
173             </div>
174             <DialogActions>
175                 <Button
176                     variant='text'
177                     color='primary'
178                     onClick={props.closeDialog}>
179                     Close
180                 </Button>
181             </DialogActions>
182
183         </Dialog >;
184     }
185 );