// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { connect } from 'react-redux'; import { Grid, Typography, Button, Card, CardContent, TableBody, TableCell, TableHead, TableRow, Table, Tooltip } from '@material-ui/core'; import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; import { ArvadosTheme } from '~/common/custom-theme'; import { DefaultCodeSnippet } from '~/components/default-code-snippet/default-code-snippet'; import { Link } from 'react-router-dom'; import { Dispatch, compose } from 'redux'; import { saveRequestedDate, loadVirtualMachinesData } from '~/store/virtual-machines/virtual-machines-actions'; import { RootState } from '~/store/store'; import { ListResults } from '~/services/common-service/common-resource-service'; import { HelpIcon } from '~/components/icon/icon'; import { VirtualMachinesLoginsResource } from '~/models/virtual-machines'; import { Routes } from '~/routes/routes'; type CssRules = 'button' | 'codeSnippet' | 'link' | 'linkIcon' | 'icon'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ button: { marginTop: theme.spacing.unit, marginBottom: theme.spacing.unit * 2 }, codeSnippet: { borderRadius: theme.spacing.unit * 0.5, border: '1px solid', borderColor: theme.palette.grey["400"], }, link: { textDecoration: 'none', color: theme.palette.primary.main, "&:hover": { color: theme.palette.primary.dark, transition: 'all 0.5s ease' } }, linkIcon: { textDecoration: 'none', color: theme.palette.grey["500"], textAlign: 'right', "&:hover": { color: theme.palette.common.black, transition: 'all 0.5s ease' } }, icon: { textAlign: "right" } }); const mapStateToProps = (state: RootState) => { return { requestedDate: state.virtualMachines.date, virtualMachines: state.virtualMachines.virtualMachines, logins: state.virtualMachines.logins, links: state.virtualMachines.links }; }; const mapDispatchToProps = (dispatch: Dispatch) => ({ saveRequestedDate: () => dispatch(saveRequestedDate()), loadVirtualMachinesData: () => dispatch(loadVirtualMachinesData()) }); interface VirtualMachinesPanelDataProps { requestedDate: string; virtualMachines: ListResults; logins: VirtualMachinesLoginsResource[]; links: ListResults; } interface VirtualMachinesPanelActionProps { saveRequestedDate: () => void; loadVirtualMachinesData: () => string; } type VirtualMachineProps = VirtualMachinesPanelActionProps & VirtualMachinesPanelDataProps & WithStyles; export const VirtualMachinePanel = compose( withStyles(styles), connect(mapStateToProps, mapDispatchToProps))( class extends React.Component { componentDidMount() { this.props.loadVirtualMachinesData(); } render() { const { classes, saveRequestedDate, requestedDate, virtualMachines, logins, links } = this.props; return ( {cardContentWithNoVirtualMachines(requestedDate, saveRequestedDate, classes)} {virtualMachines.itemsAvailable > 0 && links.itemsAvailable > 0 && cardContentWithVirtualMachines(virtualMachines, links, classes)} {cardSSHSection(classes)} ); } } ); const cardContentWithNoVirtualMachines = (requestedDate: string, saveRequestedDate: () => void, classes: any) => You do not have access to any virtual machines. Some Arvados features require using the command line. You may request access to a hosted virtual machine with the command line shell. {requestedDate && A request for shell access was sent on {requestedDate} } ; const login = 'pawelkowalczyk'; const cardContentWithVirtualMachines = (virtualMachines: ListResults, links: ListResults, classes: any) => Host name Login name Command line Web shell {virtualMachines.items.map((it, index) => {it.hostname} {getUsername(links, it)} ssh {getUsername(links, it)}@shell.arvados Log in as {getUsername(links, it)} )}
; const getUsername = (links: ListResults, virtualMachine: any) => { const link = links.items.find((item: any) => item.headUuid === virtualMachine.uuid); return link.properties.username || undefined; }; const cardSSHSection = (classes: any) => In order to access virtual machines using SSH, add an SSH key to your account and add a section like this to your SSH configuration file ( ~/.ssh/config): ; const textSSH = `Host *.arvados TCPKeepAlive yes ServerAliveInterval 60 ProxyCommand ssh -p2222 turnout@switchyard.api.ardev.roche.com -x -a $SSH_PROXY_FLAGS %h`;