1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
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";
13 export type CssRules = 'details';
15 const styles: StyleRulesCallback<CssRules> = theme => ({
17 marginLeft: theme.spacing.unit * 3,
18 marginRight: theme.spacing.unit * 3,
22 interface TabPanelData {
23 children: React.ReactElement<any>[];
28 function TabPanel(props: TabPanelData) {
29 const { children, value, index } = props;
34 hidden={value !== index}
35 id={`simple-tabpanel-${index}`}
36 aria-labelledby={`simple-tab-${index}`}
38 {value === index && children}
43 export const WebDavS3InfoDialog = compose(
44 withDialog(COLLECTION_WEBDAV_S3_DIALOG_NAME),
47 (props: WithDialogProps<WebDavS3InfoDialogData> & WithStyles<CssRules>) => {
48 if (!props.data.downloadUrl) { return null; }
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);
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}`;
64 cyberDav.username = props.data.username;
65 const cyberDavStr = "dav" + cyberDav.toString().slice(4);
67 const s3endpoint = new URL(props.data.collectionsUrl.replace(/\/\*(--[^.]+)?\./, "/"));
69 const sp = props.data.token.split("/");
72 if (sp.length === 3 && sp[0] === "v2" && sp[1].slice(0, 5) === props.data.localCluster) {
76 tokenUuid = props.data.token.replace(/\//g, "_");
77 tokenSecret = tokenUuid;
80 const supportsWebdav = (props.data.uuid.indexOf("-4zz18-") === 5);
82 let activeTab = props.data.activeTab;
83 if (!supportsWebdav) {
90 onClose={props.closeDialog}
91 style={{ alignSelf: 'stretch' }}>
93 title={`Open as Network Folder or S3 Bucket`} />
94 <div className={props.classes.details} >
95 <Tabs value={activeTab} onChange={props.data.setActiveTab}>
96 {supportsWebdav && <Tab value={0} key="cyberduck" label="Cyberduck/Mountain Duck or Gnome Files" />}
97 {supportsWebdav && <Tab value={1} key="windows" label="Windows or MacOS" />}
98 <Tab value={2} key="s3" label="S3 bucket" />
101 <TabPanel index={1} value={activeTab}>
105 label='Internet address'
106 value={<a href={winDav.toString()} target="_blank">{winDav.toString()}</a>}
107 copyValue={winDav.toString()} />
111 value={props.data.username}
112 copyValue={props.data.username} />
116 value={props.data.token}
117 copyValue={props.data.token} />
121 <li>Open File Explorer</li>
122 <li>Click on "This PC", then go to Computer → Add a Network Location</li>
123 <li>Click Next, then choose "Add a custom network location", then click Next</li>
129 <li>Click Go → Connect to server</li>
133 <TabPanel index={0} value={activeTab}>
136 value={<a href={cyberDavStr} target="_blank">{cyberDavStr}</a>}
137 copyValue={cyberDavStr} />
141 value={props.data.username}
142 copyValue={props.data.username} />
146 value={props.data.token}
147 copyValue={props.data.token} />
152 <li>Select +Other Locations</li>
153 <li>Connect to Server → Enter server address</li>
158 <TabPanel index={2} value={activeTab}>
161 value={s3endpoint.host}
162 copyValue={s3endpoint.host} />
166 value={props.data.uuid}
167 copyValue={props.data.uuid} />
172 copyValue={tokenUuid} />
177 copyValue={tokenSecret} />
186 onClick={props.closeDialog}>