Drag 'n' drop some files here, or click to select files
\nDrag 'n' drop some files here, or click to select files
\nHomeAndCo provides remote access to a filesystem, allowing to navigate in\ndirectories and download, upload or share files
\nAfter login, you access the filesystem with your usual permissions.
\n\nThis page gives access to the remote file system and can be used to\nlist, download or upload files.
\n\nAll configured directories are accessible (can be your home directory but also other group or public directories).\nSome directories may be in read-only mode.
\n\nTo navigate in directories, you can click on directory icon to go in this directory.\nQuestion mark icon can give further information on the directory (permissions etc..).
\n\nWhen listing a directory (depending on size can take a few seconds), you have the list of\nsubdirectories and files.
\nOnce you get a share link, the url can be used by anyone to access a file or a directory (and all its sub content).\nRead-write shares should be used with care!!!
\n\nUsers with this link do not need to have an account and will see only the shared file/directory. From here they can browse and download files.
\nAfter expiration time, user will not have access anymore
\n\nTokens can also be used with tools like curl to download files, simply setting in URL headers Authorization: Bearer YOURTOKEN and url https://.../api/files/xxxx (xxxx = path to the file)
\n\nIt is also possible to access filesystem via webdav (to mount disk on linux or windows as a remote disk), using url: davs://homeandco.genouest.org/api/webdav. You will be prompted for login/password.
\nFor webdav access with shared links, use *anonymous* for login, and the token as password (https://...?token=**token**)
\n\nThis page gives access to an object store (Openstack switf) and can be used to\nlist, download or upload files.
\n\n\nThis page lists the files already shared with a public link and their expiration.\nIt is possible to revoke a link to prevent further usage.
\n\nYou can also share in this page in filesystem path with an other known user or group.\nShares can be read-only (the default) or with write access.
\n\nShares can be removed at any time.
\n\nIt is possible to deny remote access via homeandco. To do so, create a file named .homeandco.deny in a dir, this dir and subdirs won't have remote web access
\nYou can also create static web sites (html pages) with public access (anyone with url can view it).
\nAccessing https://.../web/file_path will give public (anonymous) access to a file or directory if base directory or parent directory contains a file named homeandco.public.
\nIf path is a directory and contains an index.html it will be served, making possible to host a static web site
\n\nUsing curl:
\n\n# with TOKEN an environment variable with token to access file /home/homeandco/myfile
\ncurl -H \"Authorization: Bearer $TOKEN\" 'https://homeandco.genouest.org/api/download/home/homeandco/myfile'
\n OR
\ncurl 'https://homeandco.genouest.org/api/download/home/homeandco/myfile?token=$TOKEN'
\n\nUsing get:
\n# download directory content recursively, with TOKEN an environment variable with token to access directory /home/homeandco/test/
\n# Caution to ending slash for directories
\nwget --header=\"Authorization: Bearer $TOKEN\" -r --no-parent -R \"index.html*\" https://homeandco.genouest.org/api/download/home/homeandco/test/
\n\nA command line tool can be used to list/download/upload files or directories.
\nBinary can be downloaded at https://gitlab.inria.fr/genouest/r-d/homeandco/-/releases with Hac command line client for your platform (linux, mac, windows).
\n\nexport HAC_URL=https://homeandco.genouest.org
\n # Using credentials
\n export HAC_USER=my_user_login
\n export HAC_PASSWORD=my_password
\n # OR
\n export HAC_TOKEN=xxxx if using a share token
\n ./hac ls path_to_my_home
\n ./hac cp --from hac://path_to_remote_file_or_directory_to_download --to path_to_local_directory
\n ./hac cp --from path_to_local_file_or_directory_to_upload --to hac://path_to_remote_directory
\n\nOn windows, to set environment variables:
\n\n $env:HAC_URL='https://homeandco.genouest.org'\n
\n