mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-07-04 02:36:14 +00:00
* Initial commit for fileserver written in golang. [gofileserver] Fix some syntaxt errors. Add fs backend and objstore test (#352) * Add fs backend and objstore test * modify test case and optimize fs backend * Modify function name and first write temporary files * Don't need to reopen the temp files Add comment for objstore (#354) * Add comment for objstore * Modify comment Add commitmgr and test case (#356) * Add commitmgr and test case * Redefine the interface * Modify comment and interface * Modify parameter and del unused method * Add comment for FromData and ToData Add blockmgr and test case (#357) * Add blockmgr and test case * Modify comment and interface Add fsmgr and test case (#358) * Add fsmgr and test case * Add save interface and error details * Modify errors and comments Add searpc package and test case (#360) * Add searpc package * Add searpc test case * Add return error and add Request struct * Modify returned error * Modify comments add checkPerm (#369) Add file and block download (#363) * Add file and block download * Modify init and use aes algorithm * Get block by offset and add stat method * Modify objID's type * Fix reset pos after add start * Add http error handing and record log when failed to read block or write block to response * Modify http return code and value names * Modify http return code and add log info * Block read add comment and only repeat once load ccnetdb and support sqlite (#371) Add zip download (#372) * Add zip download * Modify pack dir and log info * Modify http return code and use Deflate zip compression methods add /repo/<repo-id>/permission-check (#375) add /<repo-id>/commit/HEAD (#377) add /repo/<repo-id>/commit/<id> (#379) add /repo/<repo-id>/block/<id> (#380) add /repo/<repo-id>/fs-id-list (#383) add /repo/head-commits-multi (#388) Add file upload api (#378) * Add file upload api * Upload api implements post multi files and create relative path * Modify handle error and save files directly * Fix rebase conflict * index block use channel and optimize mkdir with parents * Handle jobs and results in a loop * Mkdir with parents use postMultiFiles and use pointer of SeafDirent * Del diff_simple size_sched virtual_repo * Need to check the path with and without slash * Modify merge trees and add merge test case * Del postFile and don't close results channel * Close the file and remove multipart temp file * Modify merge test case and compare the first name of path * Use pointer of Entries for SeafDir * Add test cases for different situations add /repo/<repo-id>/pack-fs (#389) add POST /<repo-id>/check-fs and /<repo-id>/check-blocks (#396) Merge compute repo (#397) * Add update repo size and merge virtual repo * Eliminate lint warnings * Uncomment merge virtual repo and compute repo size * Need init the dents * Use interface{} param and modify removeElems * Move update dir to file.go and modify logs * Del sync pkg add PUT /<repo-id>/commit/<commit-id> (#400) add PUT /<repo-id>/block/<id> (#401) add POST /<repo-id>/recv-fs (#398) add PUT /<repo-id>/commit/HEAD (#402) Add http return code (#403) Add file update API (#399) * Add file update API * Add GetObjIDByPath and fix change size error * Add traffic statistics for update api add diffTrees unit test (#391) add GET /accessible-repos (#406) add GET /<repo-id>/block-map/<file-id> (#405) Add test update repo size and merge virtual repo (#409) * Update dir need update repo size * Add test update repo size and merge virtual repo * Add delay for test ajax * Add delay before get repo size and modify comment Use go fileserver for unit test (#410) * Use go fileserver for unit test * Blocking scheduling update repo size * Add delay because of sqlite doesn't support concurrency * Post use multipart form encode * Del mysql database when test finished * Fix merge virtual repo failed when use sqlite3 Add upload block API (#412) fixed error Add quota-check API (#426) use diff package * Use central conf for go fileserver (#428) * Use central conf for go fileserver * Fix log error * use store id and remove share get repo owner (#430) * Fix permission error (#432) Co-authored-by: feiniks <36756310+feiniks@users.noreply.github.com> Co-authored-by: Xiangyue Cai <caixiangyue007@gmail.com>
292 lines
8.8 KiB
Python
Executable File
292 lines
8.8 KiB
Python
Executable File
#!/usr/bin/env python
|
|
#coding: UTF-8
|
|
|
|
import argparse
|
|
import glob
|
|
import logging
|
|
import os
|
|
import re
|
|
import sys
|
|
from collections import namedtuple
|
|
from contextlib import contextmanager
|
|
from os.path import abspath, basename, dirname, exists, join
|
|
|
|
import requests
|
|
from tenacity import TryAgain, retry, stop_after_attempt, wait_fixed
|
|
|
|
from utils import (
|
|
cd, chdir, debug, green, info, mkdirs, red, setup_logging, shell, warning
|
|
)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class ServerCtl(object):
|
|
def __init__(self, topdir, projectdir, datadir, fileserver, db='sqlite3', seaf_server_bin='seaf-server', ccnet_server_bin='ccnet-server'):
|
|
self.db = db
|
|
self.datadir = datadir
|
|
self.central_conf_dir = join(datadir, 'conf')
|
|
self.seafile_conf_dir = join(datadir, 'seafile-data')
|
|
self.ccnet_conf_dir = join(datadir, 'ccnet')
|
|
|
|
self.log_dir = join(datadir, 'logs')
|
|
mkdirs(self.log_dir)
|
|
self.ccnet_log = join(self.log_dir, 'ccnet.log')
|
|
self.seafile_log = join(self.log_dir, 'seafile.log')
|
|
self.fileserver_log = join(self.log_dir, 'fileserver.log')
|
|
|
|
self.ccnet_server_bin = ccnet_server_bin
|
|
self.seaf_server_bin = seaf_server_bin
|
|
|
|
self.sql_dir = join(topdir, 'seafile-server', 'scripts', 'sql')
|
|
|
|
self.ccnet_proc = None
|
|
self.seafile_proc = None
|
|
self.fileserver_proc = None
|
|
self.projectdir = projectdir
|
|
self.fileserver = fileserver
|
|
|
|
def setup(self):
|
|
if self.db == 'mysql':
|
|
create_mysql_dbs()
|
|
|
|
os.mkdir (self.central_conf_dir, 0o755)
|
|
os.mkdir (self.seafile_conf_dir, 0o755)
|
|
os.mkdir (self.ccnet_conf_dir, 0o755)
|
|
|
|
self.init_ccnet()
|
|
self.init_seafile()
|
|
|
|
def init_ccnet(self):
|
|
if self.db == 'mysql':
|
|
self.add_ccnet_db_conf()
|
|
else:
|
|
self.add_ccnet_sqlite_db_conf()
|
|
|
|
def add_ccnet_sqlite_db_conf(self):
|
|
ccnet_conf = join(self.central_conf_dir, 'ccnet.conf')
|
|
ccnet_db_conf = '''\
|
|
[Database]
|
|
'''
|
|
with open(ccnet_conf, 'a+') as fp:
|
|
fp.write('\n')
|
|
fp.write(ccnet_db_conf)
|
|
|
|
def add_ccnet_db_conf(self):
|
|
ccnet_conf = join(self.central_conf_dir, 'ccnet.conf')
|
|
ccnet_db_conf = '''\
|
|
[Database]
|
|
ENGINE = mysql
|
|
HOST = 127.0.0.1
|
|
PORT = 3306
|
|
USER = seafile
|
|
PASSWD = seafile
|
|
DB = ccnet
|
|
CONNECTION_CHARSET = utf8
|
|
'''
|
|
with open(ccnet_conf, 'a+') as fp:
|
|
fp.write('\n')
|
|
fp.write(ccnet_db_conf)
|
|
|
|
def init_seafile(self):
|
|
seafile_conf = join(self.central_conf_dir, 'seafile.conf')
|
|
if self.fileserver == 'go_fileserver':
|
|
seafile_fileserver_conf = '''\
|
|
[fileserver]
|
|
use_go_fileserver = true
|
|
port=8082
|
|
'''
|
|
else:
|
|
seafile_fileserver_conf = '''\
|
|
[fileserver]
|
|
port=8082
|
|
'''
|
|
with open(seafile_conf, 'a+') as fp:
|
|
fp.write('\n')
|
|
fp.write(seafile_fileserver_conf)
|
|
|
|
if self.db == 'mysql':
|
|
self.add_seafile_db_conf()
|
|
else:
|
|
self.add_seafile_sqlite_db_conf()
|
|
|
|
def add_seafile_sqlite_db_conf(self):
|
|
seafile_conf = join(self.central_conf_dir, 'seafile.conf')
|
|
seafile_db_conf = '''\
|
|
[database]
|
|
'''
|
|
with open(seafile_conf, 'a+') as fp:
|
|
fp.write('\n')
|
|
fp.write(seafile_db_conf)
|
|
|
|
def add_seafile_db_conf(self):
|
|
seafile_conf = join(self.central_conf_dir, 'seafile.conf')
|
|
seafile_db_conf = '''\
|
|
[database]
|
|
type = mysql
|
|
host = 127.0.0.1
|
|
port = 3306
|
|
user = seafile
|
|
password = seafile
|
|
db_name = seafile
|
|
connection_charset = utf8
|
|
'''
|
|
with open(seafile_conf, 'a+') as fp:
|
|
fp.write('\n')
|
|
fp.write(seafile_db_conf)
|
|
|
|
@contextmanager
|
|
def run(self):
|
|
try:
|
|
self.start()
|
|
yield self
|
|
except:
|
|
self.print_logs()
|
|
raise
|
|
finally:
|
|
self.stop()
|
|
|
|
def print_logs(self):
|
|
for logfile in self.ccnet_log, self.seafile_log:
|
|
if exists(logfile):
|
|
shell(f'cat {logfile}')
|
|
|
|
@retry(wait=wait_fixed(1), stop=stop_after_attempt(10))
|
|
def wait_ccnet_ready(self):
|
|
if not exists(join(self.ccnet_conf_dir, 'ccnet-rpc.sock')):
|
|
raise TryAgain
|
|
|
|
def start(self):
|
|
logger.info('Starting to create ccnet and seafile db tables')
|
|
self.create_database_tables()
|
|
logger.info('Starting seafile server')
|
|
self.start_seafile()
|
|
self.start_fileserver()
|
|
|
|
def create_database_tables(self):
|
|
if self.db == 'mysql':
|
|
ccnet_sql_path = join(self.sql_dir, 'mysql', 'ccnet.sql')
|
|
seafile_sql_path = join(self.sql_dir, 'mysql', 'seafile.sql')
|
|
sql = f'USE ccnet; source {ccnet_sql_path}; USE seafile; source {seafile_sql_path};'.encode()
|
|
shell('sudo mysql -u root -proot', inputdata=sql, wait=False)
|
|
else:
|
|
config_sql_path = join(self.sql_dir, 'sqlite', 'config.sql')
|
|
groupmgr_sql_path = join(self.sql_dir, 'sqlite', 'groupmgr.sql')
|
|
org_sql_path = join(self.sql_dir, 'sqlite', 'org.sql')
|
|
user_sql_path = join(self.sql_dir, 'sqlite', 'user.sql')
|
|
seafile_sql_path = join(self.sql_dir, 'sqlite', 'seafile.sql')
|
|
|
|
misc_dir = join(self.ccnet_conf_dir, 'misc')
|
|
os.mkdir (misc_dir, 0o755)
|
|
groupmgr_dir = join(self.ccnet_conf_dir, 'GroupMgr')
|
|
os.mkdir (groupmgr_dir, 0o755)
|
|
orgmgr_dir = join(self.ccnet_conf_dir, 'OrgMgr')
|
|
os.mkdir (orgmgr_dir, 0o755)
|
|
usermgr_dir = join(self.ccnet_conf_dir, 'PeerMgr')
|
|
os.mkdir (usermgr_dir, 0o755)
|
|
|
|
config_db_path = join(misc_dir, 'config.db')
|
|
groupmgr_db_path = join(groupmgr_dir, 'groupmgr.db')
|
|
orgmgr_db_path = join(orgmgr_dir, 'orgmgr.db')
|
|
usermgr_db_path = join(usermgr_dir, 'usermgr.db')
|
|
seafile_db_path = join(self.seafile_conf_dir, 'seafile.db')
|
|
|
|
sql = f'.read {config_sql_path}'.encode()
|
|
shell('sqlite3 ' + config_db_path, inputdata=sql, wait=False)
|
|
sql = f'.read {groupmgr_sql_path}'.encode()
|
|
shell('sqlite3 ' + groupmgr_db_path, inputdata=sql, wait=False)
|
|
sql = f'.read {org_sql_path}'.encode()
|
|
shell('sqlite3 ' + orgmgr_db_path, inputdata=sql, wait=False)
|
|
sql = f'.read {user_sql_path}'.encode()
|
|
shell('sqlite3 ' + usermgr_db_path, inputdata=sql, wait=False)
|
|
sql = f'.read {seafile_sql_path}'.encode()
|
|
shell('sqlite3 ' + seafile_db_path, inputdata=sql, wait=False)
|
|
|
|
def start_ccnet(self):
|
|
cmd = [
|
|
self.ccnet_server_bin,
|
|
"-F",
|
|
self.central_conf_dir,
|
|
"-c",
|
|
self.ccnet_conf_dir,
|
|
"-f",
|
|
self.ccnet_log,
|
|
]
|
|
self.ccnet_proc = shell(cmd, wait=False)
|
|
|
|
def start_seafile(self):
|
|
cmd = [
|
|
self.seaf_server_bin,
|
|
"-F",
|
|
self.central_conf_dir,
|
|
"-c",
|
|
self.ccnet_conf_dir,
|
|
"-d",
|
|
self.seafile_conf_dir,
|
|
"-l",
|
|
self.seafile_log,
|
|
"-f",
|
|
]
|
|
self.seafile_proc = shell(cmd, wait=False)
|
|
|
|
def start_fileserver(self):
|
|
cmd = [
|
|
"./fileserver",
|
|
"-F",
|
|
self.central_conf_dir,
|
|
"-d",
|
|
self.seafile_conf_dir,
|
|
"-l",
|
|
self.fileserver_log,
|
|
]
|
|
fileserver_path = join(self.projectdir, 'fileserver')
|
|
with cd(fileserver_path):
|
|
shell("go build")
|
|
self.fileserver_proc = shell(cmd, wait=False)
|
|
|
|
|
|
def stop(self):
|
|
if self.ccnet_proc:
|
|
logger.info('Stopping ccnet server')
|
|
self.ccnet_proc.kill()
|
|
if self.seafile_proc:
|
|
logger.info('Stopping seafile server')
|
|
self.seafile_proc.kill()
|
|
if self.fileserver_proc:
|
|
logger.info('Stopping go fileserver')
|
|
self.fileserver_proc.kill()
|
|
if self.db == 'mysql':
|
|
del_mysql_dbs()
|
|
|
|
def get_seaserv_envs(self):
|
|
envs = dict(os.environ)
|
|
envs.update({
|
|
'SEAFILE_CENTRAL_CONF_DIR': self.central_conf_dir,
|
|
'CCNET_CONF_DIR': self.ccnet_conf_dir,
|
|
'SEAFILE_CONF_DIR': self.seafile_conf_dir,
|
|
})
|
|
return envs
|
|
|
|
|
|
def create_mysql_dbs():
|
|
sql = b'''\
|
|
create database `ccnet` character set = 'utf8';
|
|
create database `seafile` character set = 'utf8';
|
|
|
|
create user 'seafile'@'localhost' identified by 'seafile';
|
|
|
|
GRANT ALL PRIVILEGES ON `ccnet`.* to `seafile`@localhost;
|
|
GRANT ALL PRIVILEGES ON `seafile`.* to `seafile`@localhost;
|
|
'''
|
|
|
|
shell('sudo mysql -u root -proot', inputdata=sql)
|
|
|
|
def del_mysql_dbs():
|
|
sql = b'''\
|
|
drop database `ccnet`;
|
|
drop database `seafile`;
|
|
drop user 'seafile'@'localhost';
|
|
'''
|
|
|
|
shell('sudo mysql -u root -proot', inputdata=sql)
|