S42 Transfer

s42 transfer是一个网站,允许以简单的方式上传多个文件,并提供压缩文件的唯一链接以及电子邮件共享功能。(s42transfer is a web site permitting to upload mulitple files in a simple way and give unique links with compressed files along with email sharing functionality.)

  • 所有者: jakop345/s42transfer
  • 平台: BSD, Linux, Mac, Solaris, Windows
  • 許可證: GNU Affero General Public License v3.0
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

s42transfer是一个网站,允许以简单的方式上传多个文件,并提供压缩文件的唯一链接以及电子邮件共享功能。

demo.s42.io 上提供了最新版本的演示。

主要特点:
  • 使用拖放选项进行多次上传 => 使用电子邮件共享功能的单个和集体下载链接以及单个/多个文件的一个删除链接
  • 分享任何大型多文件(感谢HTML5)
  • 没有数据库,只使用基本的PHP
  • 显示进度:速度,百分比和剩余上传时间
  • 在浏览器中预览内容(如果可能)
  • 可选密码保护(用于上传或下载)
  • 时间限制
  • 选择阅读后自毁
  • 简单的语言支持:en
  • 小型管理界面,用于控制主题,文件上传限制,电子邮件共享功能和其他基本设置。
  • 用于存储优化的文件级消重
  • 基本服务条款,可根据您的需求进行调整
  • 使用base 64编码缩短的URL
  • API接口
  • 可选的数据加密
  • 皮肤......

s42transfer是原始项目Jirafeau 1.0版的一个分支,经过大量修改。

作为原始项目,s42transfer以KISS方式制作(Keep It Simple,Stupid)。

s42transfer项目不会发展为文件管理器,而是专注于保留很少的依赖项。

概覽

名稱與所有者jakop345/s42transfer
主編程語言PHP
編程語言PHP (語言數: 3)
平台BSD, Linux, Mac, Solaris, Windows
許可證GNU Affero General Public License v3.0
發布數1
最新版本名稱V1.0 (發布於 )
第一版名稱V1.0 (發布於 )
創建於2017-01-24 16:15:46
推送於2017-01-24 16:16:10
最后一次提交2016-03-31 18:51:19
星數1
關注者數3
派生數1
提交數32
已啟用問題?
問題數0
打開的問題數0
拉請求數0
打開的拉請求數0
關閉的拉請求數0
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?

Introduction

Welcome to the official s42transfer project, an Open-Source software.

s42transfer is a web site permitting to upload mulitple files in a simple way and give unique links with compressed files along with email sharing functionality.

A demonstration of the latest version is available on demo.s42.io

Screenshot1

Main features:

  • Multiple upload with drag & drop option => single and collective download links with email sharing functionality & One delete link for single/multiple files
  • Share any large mulitple files (thanks to HTML5)
  • No database, only use basic PHP
  • Shows progression: speed, percentage and remaining upload time
  • Preview content in browser (if possible)
  • Optional Password protection (for uploading or downloading)
  • Time limitation
  • Option to self-destruct after reading
  • Simple language support :en
  • Small administration interface to control theme, file upload limit, email sharing feature and other basic settings.
  • File level Deduplication for storage optimization
  • A basic Terms Of Service which can be adapted to your needs
  • Shortened URLs using base 64 encoding
  • API interface
  • Optional data encryption
  • Skin
    ...

s42transfer is a fork of the original project Jirafeau version 1.0 with a lot of modifications.

As it's original project, s42transfer is made in the KISS way (Keep It Simple, Stupid).

s42transfer project won't evolve to a file manager and will focus to keep a very few dependencies.

Screenshots

Here are some screenshots:

Installation

  • Download the last version of s42transfer from GitLab
  • Upload files on your web server
  • Don't forget to set owner of uploaded files if you need to
  • Get your web browser and go to you install location (e.g. http://your-web-site.org/s42transfer/) and follow instructions
  • Some options are not configured from the minimal installation wizard, you may take a look at option documentation in lib/config.original.php and customize your lib/config.local.php

Note that lib/config.local.php is auto-generated during the installation.

If you don't want to go through the installation wizard, you can just copy config.original.php to config.local.php and customize it.

Security

var directory contain all files and links. It is randomly named to limit access but you may add better protection to prevent un-authorized access to it.
You have several options:

  • Configure a .htaccess
  • Move var folder to a place on your server which can't be directly accessed
  • Disable automatic listing on your web server config or place a index.html in var's sub-directory (this is a limited solution)

If you are using Apache, you can add the following lineto your configuration to prevent people to access to your var folder:

RedirectMatch 301 ^/var-.* http://my.service.s42transfer

You should also remove un-necessessary write access once the installation is done (ex: configuration file).
An other obvious basic security is to let access users to the site by HTTPS.

Few notes about server side encryption

Data encryption can be activated in options. This feature makes the server encrypt data and send the decryt key to the user (inside download URL).
The decrypt key is not stored on the server so if you loose an url, you won't be able to retrieve file content.
In case of security troubles on the server, attacker won't be able to access files.

By activating this feature, you have to be aware of few things:

  • Data encryption has a cost (cpu) and it takes more time for downloads to complete once file sent.
  • During the download, the server will decrypt on the fly (and use resource).
  • This feature needs to have the mcrypt php module.
  • File de-duplication will stop to work (as we can't compare two encrypted files).
  • Be sure your server do not log client's requests.
  • Don't forget to enable https.

In a next step, encryption will be made by the client (in javascript), see issue #10.

FAQ

How do I upgrade my s42transfer ?

If you have installed s42transfer using git, it's pretty simple: just make a git pull and chown/chmod files who have the owner changed.

If you have installed s42transfer just by uploading files on your server, you can take the last version, overwrite files and chown/chmod files if needed.

After upgrading, you can compare your lib/config.local.php and lib/config.original.php to see if new configuration items are available.

If you have some troubles:

  • It should probably come from your lib/config.local.php (configuration syntax may have changed). Just compare it with lib/config.original.php
  • Check owner/permissions of your files.

Anyway you should off-course make a backup of your current installation before doing anything. :)

How can I limit upload access ?

There are two ways to limit upload access (but not download):

  • you can set one or more passwords in order to access the upload interface, or/and
  • you can configure a list of authorized IP (CIDR notation) which are allowed to access to the upload page

Check documentation of upload_password and upload_ip parameters in lib/config.original.php.

I have some troubles with IE

If you have some strange behavior with IE, you may configure compatibility mode.

Anyway I would recommand you to use another web browser. :)

I found a bug, what should I do ?

Feel free to open a bug in the GitLab's issues.

How to set maximum file size ?

If your browser supports HTML5 file API, you can send files as big as you want.

For browsers who does not support HTML5 file API, the limitation come from PHP configuration.
You have to set post_max_size and upload_max_filesize in your php configuration.

If you don't want to allow unlimited upload size, you can still setup a maximal file size in s42tranfer setting (see maximal_upload_size in your configuration)

How can I edit an option ?

Documentation of all default options are located in lib/config.original.php.
If you want to change an option, just edit your lib/config.local.php.

How can I access the admin interface ?

Just go to /admin.php.

How can I use the scripting interface ?

Simply go to /script.php with your web browser.

My downloads are incomplete or my uploads fails

Be sure your PHP installation is not using safe mode, it may cause timeouts.

Why forking ?

The original project seems not to be continued anymore and I prefer to add more features and increase security from a stable version.

What can we expect in the future ?

Check issues to check open bugs and incoming new stuff. :)

What is the s42transfer license ?

s42transfer is licensed under AGPLv3.

How do I modify the TOS (terms of use) ?

Just edit tos.php and configure $org and $contact variables.

What about this file deduplication thing ?

s42transfer use a very simple file level deduplication for storage optimization.

This mean that if some people upload several times the same file, this will only store one time the file and increment a counter.

If someone use his delete link or an admin cleans expired links, this will decrement the counter corresponding to the file.

If the counter falls to zero, the file is destroyed.

As explained in the previous question, files with the same md5 hash are not duplicated and a reference counter stores the number of links pointing to a single file.
So:

  • The button "delete link" will delete the reference to the file but might not destroy the file.
  • The button "delete file and links" will delete all references pointing to the file and will destroy the file.

How to contact someone from s42transfer ?

Feel free to create an issue if you found a bug, else you can send an email to admin@s42.io

去到頂部