Compare commits

...

13 Commits

Author SHA1 Message Date
5faa970b79 Feat: 다중 사용자 인증 시스템 구현
- EncryptedSharedPreferences를 사용한 암호화된 사용자 저장
- SHA-256 해싱으로 비밀번호 보안 강화 (username을 salt로 사용)
- 사용자 CRUD 기능 (추가/수정/삭제/조회)
- 사용자 관리 UI 추가 (UserManagementActivity)
- FTP 인증 로직을 placeholder에서 실제 검증으로 변경
- 기본 admin/admin 사용자 자동 생성
- 마지막 사용자 삭제 방지 기능

보안 기능:
- 이중 보안: 비밀번호 해싱 + EncryptedSharedPreferences
- 평문 저장 없음
- 유효성 검사 (username: 3-20자 영숫자+_, password: 최소 4자)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-02 05:52:05 +09:00
0c3b7054bd Fix: Windows에서 한글 파일명 분리 현상 해결
FTP RFC 2640 표준에 따라 파일명을 NFC 형식으로 전송하도록 변경.
- 기존 NFD 변환 코드 제거 (convertFileListToNFD, denormalizeFilename 호출)
- Windows 클라이언트: NFC로 받아 한글이 정상 표시
- Mac 클라이언트: NFC를 자동으로 NFD 변환하여 처리
- 파일 검색 시 NFD/NFC 양방향 호환성은 findFileWithNormalization()으로 유지

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-02 05:02:06 +09:00
3357fe76d4 Feat: 데이터 포트 범위 지정 기능 추가
방화벽 환경에서 특정 포트 범위만 개방하여 사용할 수 있도록 데이터 포트 범위 설정 기능 추가.
- FTPConfig에 minDataPort, maxDataPort 설정 추가 (기본값: 50000-50100)
- FTPDataConnection에서 지정된 범위 내 사용 가능한 포트 자동 할당
- MainActivity UI에 데이터 포트 범위 설정 필드 추가
- 포트 범위 유효성 검증 (최소 10개 포트, 1024-65535 범위)
- 범위 미지정 시 기존처럼 랜덤 포트 사용

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-02 04:33:53 +09:00
12f27e9f13 Fix: 앱 재시작 시 UI 상태와 서비스 상태 동기화 문제 해결
onResume()에서 실제 FTPService 실행 상태를 확인하여 UI를 동기화함으로써 화면 전환 또는 앱 재시작 시에도 올바른 버튼 상태가 표시되도록 수정.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-02 02:10:39 +09:00
e6e4ef7df5 Fix: macOS 한글 파일명 유니코드 정규화 문제 해결
macOS NFD와 Android NFC 유니코드 정규화 차이로 인한 한글 파일명 처리 오류 수정.
파일 검색 시 NFD/NFC 모두 지원하도록 개선하여 macOS에서 업로드/다운로드/삭제 작업이 정상 동작함.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-02 00:58:17 +09:00
a03300ed62 Chore: Remove temp file 2026-01-01 04:29:17 +09:00
7914b7b4c5 Fix: MANAGE_EXTERNAL_STORAGE 권한 추가로 파일 쓰기 오류 해결
문제: Android 11+ Scoped Storage로 인해 EPERM (Operation not permitted) 에러 발생
- Storage Access Framework로 디렉토리 선택했지만 File API로 쓰기 시도
- 권한 부족으로 파일 업로드(STOR) 실패

해결:
- AndroidManifest.xml에 MANAGE_EXTERNAL_STORAGE 권한 추가
- MainActivity에서 Android 11+ (API 30+) 권한 요청 로직 추가
  * Environment.isExternalStorageManager()로 권한 확인
  * Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION으로 설정 화면 이동
  * 서버 시작 전 권한 체크 추가
- 이 권한으로 외부 저장소 전체에 File API 접근 가능

사용자는 앱 실행 시 "All files access" 권한 활성화 필요

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-01 04:19:26 +09:00
9594233c8e Feat: 사용자 설정 기능 구현 (포트, 루트 디렉토리)
- FTPConfig 클래스 생성: SharedPreferences 기반 설정 관리
  * 포트 번호 저장/로드
  * 루트 디렉토리 URI 및 경로 저장/로드
- MainActivity UI 업데이트
  * ScrollView로 전체 레이아웃 감싸기
  * 설정 섹션 추가 (포트 입력, 디렉토리 선택)
  * Storage Access Framework로 디렉토리 선택 기능
  * 설정 유효성 검사 (포트 범위: 1024-65535)
- MainActivity 로직 업데이트
  * ActivityResultLauncher로 디렉토리 선택
  * takePersistableUriPermission으로 지속적 권한 획득
  * 설정 로드 및 저장 기능
  * 서버 시작 전 루트 디렉토리 필수 체크
- FTPService 수정
  * Intent로 포트 및 루트 디렉토리 전달받음
  * FTPServer에 설정값 전달
- FTPServer 생성자 확장
  * 포트 및 루트 디렉토리 파라미터 추가
  * FTPSession에 설정값 전달
- FTPSession 생성자 확장
  * 루트 디렉토리 파라미터 추가
  * FTPFileSystem에 전달
- FTPFileSystem 생성자 확장
  * 사용자 지정 루트 디렉토리 지원
  * null일 경우 기본 디렉토리 사용
  * 경로 유효성 검증

이제 사용자가 원하는 디렉토리를 FTP 루트로 설정 가능
Android 11+ Scoped Storage 문제 해결

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-01 04:12:28 +09:00
710ec15fb1 Fix: compileSdk를 34로 낮추고 FTPFileSystem final 필드 버그 수정
- Android Gradle Plugin 7.1.3과 호환 문제로 compileSdk 36 → 34로 변경
- targetSdk도 34로 변경
- FTPFileSystem에서 final 필드 rootDirectory에 두 번 할당하는 버그 수정
  * getDefaultRootDirectory() 헬퍼 메서드로 로직 분리

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-01 04:11:31 +09:00
74bf67a9b2 Feat: 파일 전송 기능 구현 (업로드/다운로드)
- RETR 명령어 구현: 파일 다운로드
  * 파일 존재 여부 확인
  * 데이터 연결을 통한 파일 스트림 전송
  * 전송 바이트 수 로깅
  * 에러 처리 및 연결 자동 종료
- STOR 명령어 구현: 파일 업로드
  * 현재 디렉토리에 파일 생성
  * 데이터 연결을 통한 파일 스트림 수신
  * 전송 완료 후 파일 크기 확인
  * 에러 처리 및 연결 자동 종료
- 두 명령어 모두 PASV 선행 필수
- FileInputStream/FileOutputStream을 사용한 스트림 처리
- 전송 성공/실패에 따른 적절한 응답 코드 반환

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-01 02:55:28 +09:00
5b276a4d8a Feat: 데이터 연결 및 Passive Mode 구현
- FTPDataConnection 클래스 생성: 데이터 연결 관리
  * Passive Mode를 위한 ServerSocket 생성
  * 동적 포트 할당 및 클라이언트 연결 수락
  * 데이터 송수신 기능 (바이트 배열, 문자열, 스트림)
  * 30초 타임아웃 설정
- FTPSession에 데이터 연결 통합
  * dataConnection 필드 및 transferType 필드 추가
  * 세션 종료 시 데이터 연결 자동 닫기
- PASV 명령어 구현
  * Passive Mode 진입
  * 서버 주소와 포트를 h1,h2,h3,h4,p1,p2 형식으로 응답
  * 이전 데이터 연결 자동 종료
- TYPE 명령어 구현
  * ASCII (A) 및 Binary (I) 모드 지원
  * 전송 타입 상태 관리
- LIST/NLST 명령어를 데이터 연결로 수정
  * PASV 명령어 선행 필수
  * 데이터 연결을 통해 파일 목록 전송
  * 전송 완료 후 연결 자동 종료

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-01 02:53:48 +09:00
7ec1073d14 Feat: 파일 시스템 접근 및 디렉토리 탐색 명령어 구현
- FTPFileSystem 클래스 생성: 파일 시스템 추상화
  * 안드로이드 외부 저장소의 FTPServer 디렉토리를 루트로 설정
  * 경로 보안 검증 (루트 디렉토리 escape 방지)
  * 상대/절대 경로 지원
- FTPSession에 파일 시스템 통합
  * FTPFileSystem 인스턴스 추가
  * PWD 명령어를 파일 시스템 기반으로 수정
- 디렉토리 탐색 명령어 구현
  * CWD: 디렉토리 변경
  * CDUP: 상위 디렉토리로 이동
- 파일 목록 명령어 구현
  * LIST: 상세 파일 목록 (Unix 스타일)
  * NLST: 파일명만 나열
  * 임시로 제어 연결을 통해 전송 (데이터 연결은 Phase 4에서 구현)
- 파일/디렉토리 관리 명령어 구현
  * MKD: 디렉토리 생성
  * RMD: 디렉토리 삭제
  * DELE: 파일 삭제
  * SIZE: 파일 크기 조회

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-01 02:49:42 +09:00
f08d8d66d8 Feat: FTP 서버 기본 구조 구현
- AndroidManifest.xml에 필요한 권한 추가 (INTERNET, STORAGE 등)
- FTPResponse 클래스 생성: FTP 응답 코드 상수 정의
- FTPSession 클래스 생성: 개별 클라이언트 세션 처리
  * 명령어 읽기/응답 보내기 기본 루프
  * USER, PASS, QUIT, SYST, PWD, NOOP 명령어 처리
- FTPServer 클래스 생성: 메인 서버 로직
  * ServerSocket으로 포트 2121에서 수신 대기
  * ExecutorService로 다중 클라이언트 연결 관리
- FTPService 클래스 생성: 백그라운드 포그라운드 서비스
  * 서버 시작/중지 Intent 처리
  * 알림 채널 및 포그라운드 서비스 구현
- MainActivity UI 업데이트: 서버 제어 기능
  * 시작/중지 버튼 추가
  * 서버 상태 표시
  * 런타임 권한 요청 처리

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-01 02:46:18 +09:00
58 changed files with 3777 additions and 0 deletions

17
.gitignore vendored Normal file
View File

@@ -0,0 +1,17 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
.temp

3
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

1
.idea/.name generated Normal file
View File

@@ -0,0 +1 @@
Gyub_s Android FTP Server

6
.idea/AndroidProjectSystem.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AndroidProjectSystem">
<option name="providerId" value="com.android.tools.idea.GradleProjectSystem" />
</component>
</project>

6
.idea/compiler.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="11" />
</component>
</project>

10
.idea/deploymentTargetSelector.xml generated Normal file
View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="deploymentTargetSelector">
<selectionStates>
<SelectionState runConfigName="app">
<option name="selectionMode" value="DROPDOWN" />
</SelectionState>
</selectionStates>
</component>
</project>

13
.idea/deviceManager.xml generated Normal file
View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DeviceTable">
<option name="columnSorters">
<list>
<ColumnSorterState>
<option name="column" value="Name" />
<option name="order" value="ASCENDING" />
</ColumnSorterState>
</list>
</option>
</component>
</project>

19
.idea/gradle.xml generated Normal file
View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="testRunner" value="CHOOSE_PER_TEST" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleJvm" value="jbr-21" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
</GradleProjectSettings>
</option>
</component>
</project>

8
.idea/markdown.xml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="MarkdownSettings">
<option name="previewPanelProviderInfo">
<ProviderInfo name="Compose (experimental)" className="com.intellij.markdown.compose.preview.ComposePanelProvider" />
</option>
</component>
</project>

9
.idea/misc.xml generated Normal file
View File

@@ -0,0 +1,9 @@
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="Android Studio default JDK" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
<option name="id" value="Android" />
</component>
</project>

17
.idea/runConfigurations.xml generated Normal file
View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="com.intellij.execution.junit.AbstractAllInDirectoryConfigurationProducer" />
<option value="com.intellij.execution.junit.AllInPackageConfigurationProducer" />
<option value="com.intellij.execution.junit.PatternConfigurationProducer" />
<option value="com.intellij.execution.junit.TestInClassConfigurationProducer" />
<option value="com.intellij.execution.junit.UniqueIdConfigurationProducer" />
<option value="com.intellij.execution.junit.testDiscovery.JUnitTestDiscoveryConfigurationProducer" />
<option value="org.jetbrains.kotlin.idea.junit.KotlinJUnitRunConfigurationProducer" />
<option value="org.jetbrains.kotlin.idea.junit.KotlinPatternConfigurationProducer" />
</set>
</option>
</component>
</project>

7
.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

1
app/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/build

39
app/build.gradle Normal file
View File

@@ -0,0 +1,39 @@
plugins {
id 'com.android.application'
}
android {
compileSdk 34
defaultConfig {
applicationId "be.gyu.android.server.ftp"
minSdk 21
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.security:security-crypto:1.1.0-alpha06'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

21
app/proguard-rules.pro vendored Normal file
View File

@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

View File

@@ -0,0 +1,26 @@
package be.gyu.android.server.ftp;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("be.gyu.android.server.ftp", appContext.getPackageName());
}
}

View File

@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="be.gyu.android.server.ftp">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Gyub_sAndroidFTPServer">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".UserManagementActivity"
android:label="Manage Users"
android:parentActivityName=".MainActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".MainActivity" />
</activity>
<service
android:name=".FTPService"
android:enabled="true"
android:exported="false"
android:foregroundServiceType="dataSync" />
</application>
</manifest>

View File

@@ -0,0 +1,90 @@
package be.gyu.android.server.ftp;
import android.content.Context;
import android.content.SharedPreferences;
import android.net.Uri;
public class FTPConfig {
private static final String PREF_NAME = "FTPServerConfig";
private static final String KEY_PORT = "ftp_port";
private static final String KEY_ROOT_DIR_URI = "root_directory_uri";
private static final String KEY_ROOT_DIR_PATH = "root_directory_path";
private static final String KEY_MIN_DATA_PORT = "min_data_port";
private static final String KEY_MAX_DATA_PORT = "max_data_port";
private static final int DEFAULT_PORT = 2121;
private static final int DEFAULT_MIN_DATA_PORT = 50000;
private static final int DEFAULT_MAX_DATA_PORT = 50100;
private final SharedPreferences preferences;
public FTPConfig(Context context) {
this.preferences = context.getSharedPreferences(PREF_NAME, Context.MODE_PRIVATE);
}
public int getPort() {
return preferences.getInt(KEY_PORT, DEFAULT_PORT);
}
public void setPort(int port) {
preferences.edit().putInt(KEY_PORT, port).apply();
}
public String getRootDirectoryUri() {
return preferences.getString(KEY_ROOT_DIR_URI, null);
}
public void setRootDirectoryUri(String uriString) {
preferences.edit().putString(KEY_ROOT_DIR_URI, uriString).apply();
}
public String getRootDirectoryPath() {
return preferences.getString(KEY_ROOT_DIR_PATH, null);
}
public void setRootDirectoryPath(String path) {
preferences.edit().putString(KEY_ROOT_DIR_PATH, path).apply();
}
public boolean hasRootDirectory() {
return getRootDirectoryPath() != null && !getRootDirectoryPath().isEmpty();
}
public void clearRootDirectory() {
preferences.edit()
.remove(KEY_ROOT_DIR_URI)
.remove(KEY_ROOT_DIR_PATH)
.apply();
}
public void saveSettings(int port, String rootDirUri, String rootDirPath) {
preferences.edit()
.putInt(KEY_PORT, port)
.putString(KEY_ROOT_DIR_URI, rootDirUri)
.putString(KEY_ROOT_DIR_PATH, rootDirPath)
.apply();
}
public int getMinDataPort() {
return preferences.getInt(KEY_MIN_DATA_PORT, DEFAULT_MIN_DATA_PORT);
}
public void setMinDataPort(int port) {
preferences.edit().putInt(KEY_MIN_DATA_PORT, port).apply();
}
public int getMaxDataPort() {
return preferences.getInt(KEY_MAX_DATA_PORT, DEFAULT_MAX_DATA_PORT);
}
public void setMaxDataPort(int port) {
preferences.edit().putInt(KEY_MAX_DATA_PORT, port).apply();
}
public void setDataPortRange(int minPort, int maxPort) {
preferences.edit()
.putInt(KEY_MIN_DATA_PORT, minPort)
.putInt(KEY_MAX_DATA_PORT, maxPort)
.apply();
}
}

View File

@@ -0,0 +1,211 @@
package be.gyu.android.server.ftp;
import android.util.Log;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
public class FTPDataConnection {
private static final String TAG = "FTPDataConnection";
private static final int DATA_CONNECTION_TIMEOUT = 30000; // 30 seconds
private ServerSocket passiveSocket;
private Socket dataSocket;
private int passivePort;
public boolean openPassiveMode(InetAddress bindAddress) {
return openPassiveMode(bindAddress, 0, 0);
}
public boolean openPassiveMode(InetAddress bindAddress, int minPort, int maxPort) {
try {
if (minPort <= 0 || maxPort <= 0 || minPort > maxPort) {
// Use port 0 to get a random available port
passiveSocket = new ServerSocket(0, 1, bindAddress);
passiveSocket.setSoTimeout(DATA_CONNECTION_TIMEOUT);
passivePort = passiveSocket.getLocalPort();
Log.i(TAG, "Passive mode enabled on random port: " + passivePort);
return true;
}
// Try to find an available port in the specified range
IOException lastException = null;
for (int port = minPort; port <= maxPort; port++) {
try {
passiveSocket = new ServerSocket(port, 1, bindAddress);
passiveSocket.setSoTimeout(DATA_CONNECTION_TIMEOUT);
passivePort = passiveSocket.getLocalPort();
Log.i(TAG, "Passive mode enabled on port: " + passivePort + " (range: " + minPort + "-" + maxPort + ")");
return true;
} catch (IOException e) {
lastException = e;
// Port is in use, try next port
}
}
// No available port found in range
Log.e(TAG, "No available port in range " + minPort + "-" + maxPort);
if (lastException != null) {
Log.e(TAG, "Last error: " + lastException.getMessage());
}
return false;
} catch (IOException e) {
Log.e(TAG, "Error opening passive mode: " + e.getMessage());
return false;
}
}
public boolean acceptConnection() {
if (passiveSocket == null) {
Log.e(TAG, "Passive socket not initialized");
return false;
}
try {
Log.d(TAG, "Waiting for data connection...");
dataSocket = passiveSocket.accept();
Log.i(TAG, "Data connection established from: " + dataSocket.getInetAddress());
return true;
} catch (IOException e) {
Log.e(TAG, "Error accepting data connection: " + e.getMessage());
return false;
}
}
public boolean sendData(byte[] data) {
if (dataSocket == null || dataSocket.isClosed()) {
Log.e(TAG, "Data socket not available");
return false;
}
try {
OutputStream out = new BufferedOutputStream(dataSocket.getOutputStream());
out.write(data);
out.flush();
Log.d(TAG, "Sent " + data.length + " bytes");
return true;
} catch (IOException e) {
Log.e(TAG, "Error sending data: " + e.getMessage());
return false;
}
}
public boolean sendData(String text) {
return sendData(text.getBytes());
}
public byte[] receiveData(int maxSize) {
if (dataSocket == null || dataSocket.isClosed()) {
Log.e(TAG, "Data socket not available");
return null;
}
try {
InputStream in = new BufferedInputStream(dataSocket.getInputStream());
byte[] buffer = new byte[maxSize];
int bytesRead = in.read(buffer);
if (bytesRead > 0) {
byte[] data = new byte[bytesRead];
System.arraycopy(buffer, 0, data, 0, bytesRead);
Log.d(TAG, "Received " + bytesRead + " bytes");
return data;
} else {
Log.w(TAG, "No data received");
return null;
}
} catch (IOException e) {
Log.e(TAG, "Error receiving data: " + e.getMessage());
return null;
}
}
public boolean transferStream(InputStream inputStream) {
if (dataSocket == null || dataSocket.isClosed()) {
Log.e(TAG, "Data socket not available");
return false;
}
try {
OutputStream out = new BufferedOutputStream(dataSocket.getOutputStream());
byte[] buffer = new byte[8192];
int bytesRead;
long totalBytes = 0;
while ((bytesRead = inputStream.read(buffer)) != -1) {
out.write(buffer, 0, bytesRead);
totalBytes += bytesRead;
}
out.flush();
Log.i(TAG, "Transferred " + totalBytes + " bytes via stream");
return true;
} catch (IOException e) {
Log.e(TAG, "Error transferring stream: " + e.getMessage());
return false;
}
}
public boolean receiveStream(OutputStream outputStream) {
if (dataSocket == null || dataSocket.isClosed()) {
Log.e(TAG, "Data socket not available");
return false;
}
try {
InputStream in = new BufferedInputStream(dataSocket.getInputStream());
byte[] buffer = new byte[8192];
int bytesRead;
long totalBytes = 0;
while ((bytesRead = in.read(buffer)) != -1) {
outputStream.write(buffer, 0, bytesRead);
totalBytes += bytesRead;
}
outputStream.flush();
Log.i(TAG, "Received " + totalBytes + " bytes via stream");
return true;
} catch (IOException e) {
Log.e(TAG, "Error receiving stream: " + e.getMessage());
return false;
}
}
public void close() {
try {
if (dataSocket != null && !dataSocket.isClosed()) {
dataSocket.close();
Log.d(TAG, "Data socket closed");
}
} catch (IOException e) {
Log.e(TAG, "Error closing data socket: " + e.getMessage());
}
try {
if (passiveSocket != null && !passiveSocket.isClosed()) {
passiveSocket.close();
Log.d(TAG, "Passive socket closed");
}
} catch (IOException e) {
Log.e(TAG, "Error closing passive socket: " + e.getMessage());
}
dataSocket = null;
passiveSocket = null;
}
public int getPassivePort() {
return passivePort;
}
public boolean isDataConnectionOpen() {
return dataSocket != null && !dataSocket.isClosed();
}
}

View File

@@ -0,0 +1,372 @@
package be.gyu.android.server.ftp;
import android.content.Context;
import android.net.Uri;
import android.os.Environment;
import android.util.Log;
import androidx.documentfile.provider.DocumentFile;
import java.io.File;
import java.text.Normalizer;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Locale;
public class FTPFileSystem {
private static final String TAG = "FTPFileSystem";
private final Context context;
private final DocumentFile rootDirectory;
private DocumentFile currentDirectory;
private final boolean useDocumentFile;
public FTPFileSystem(Context context) {
this(context, null);
}
public FTPFileSystem(Context context, Uri rootDirectoryUri) {
this.context = context;
if (rootDirectoryUri != null) {
// Use user-specified directory via DocumentFile
DocumentFile userDir = DocumentFile.fromTreeUri(context, rootDirectoryUri);
if (userDir != null && userDir.exists() && userDir.isDirectory()) {
this.rootDirectory = userDir;
this.useDocumentFile = true;
Log.i(TAG, "Using user-specified root (DocumentFile): " + rootDirectoryUri);
} else {
Log.w(TAG, "User-specified directory does not exist: " + rootDirectoryUri);
this.rootDirectory = getDefaultRootDirectory();
this.useDocumentFile = false;
}
} else {
// Use default directory
this.rootDirectory = getDefaultRootDirectory();
this.useDocumentFile = false;
}
this.currentDirectory = rootDirectory;
Log.d(TAG, "File system initialized. Root: " + getDisplayPath(rootDirectory));
}
private DocumentFile getDefaultRootDirectory() {
File externalStorage = Environment.getExternalStorageDirectory();
File ftpServerDir = new File(externalStorage, "FTPServer");
// Create root directory if it doesn't exist
if (!ftpServerDir.exists()) {
if (ftpServerDir.mkdirs()) {
Log.i(TAG, "Root directory created: " + ftpServerDir.getAbsolutePath());
} else {
Log.w(TAG, "Failed to create root directory, using external storage root");
ftpServerDir = externalStorage;
}
}
return DocumentFile.fromFile(ftpServerDir);
}
private String getDisplayPath(DocumentFile file) {
if (file == null) return "null";
Uri uri = file.getUri();
if (uri != null) {
return uri.toString();
}
return file.getName();
}
public String getCurrentPath() {
String relativePath = getRelativePath(currentDirectory);
return relativePath.isEmpty() ? "/" : "/" + relativePath;
}
public boolean changeDirectory(String path) {
DocumentFile newDir;
if (path.startsWith("/")) {
// Absolute path
newDir = findDocumentFile(rootDirectory, path.substring(1));
} else {
// Relative path
newDir = findDocumentFile(currentDirectory, path);
}
if (newDir != null && newDir.exists() && newDir.isDirectory()) {
// Security check: prevent escaping root directory
if (isSubDirectory(newDir, rootDirectory)) {
currentDirectory = newDir;
Log.d(TAG, "Changed directory to: " + getDisplayPath(currentDirectory));
return true;
} else {
Log.w(TAG, "Attempted to escape root directory");
return false;
}
} else {
Log.w(TAG, "Directory does not exist: " + path);
return false;
}
}
public boolean changeToParentDirectory() {
DocumentFile parent = currentDirectory.getParentFile();
if (parent == null) {
return false;
}
// Cannot go above root directory
if (!isSubDirectory(parent, rootDirectory) && !isSameFile(parent, rootDirectory)) {
return false;
}
currentDirectory = parent;
Log.d(TAG, "Changed to parent directory: " + getDisplayPath(currentDirectory));
return true;
}
public List<DocumentFile> listFiles() {
DocumentFile[] files = currentDirectory.listFiles();
List<DocumentFile> fileList = new ArrayList<>();
if (files != null) {
for (DocumentFile file : files) {
fileList.add(file);
}
}
return fileList;
}
public String formatFileList(boolean detailed) {
List<DocumentFile> files = listFiles();
StringBuilder sb = new StringBuilder();
if (detailed) {
// LIST format: Unix-style detailed listing
SimpleDateFormat dateFormat = new SimpleDateFormat("MMM dd HH:mm", Locale.US);
for (DocumentFile file : files) {
sb.append(formatDetailedFile(file, dateFormat)).append("\r\n");
}
} else {
// NLST format: names only
for (DocumentFile file : files) {
sb.append(file.getName()).append("\r\n");
}
}
return sb.toString();
}
private String formatDetailedFile(DocumentFile file, SimpleDateFormat dateFormat) {
// Format: drwxrwxrwx 1 owner group size date name
String permissions = file.isDirectory() ? "drwxr-xr-x" : "-rw-r--r--";
String owner = "ftp";
String group = "ftp";
long size = file.length();
String date = dateFormat.format(new Date(file.lastModified()));
String name = file.getName();
return String.format("%s %4d %-8s %-8s %10d %s %s",
permissions, 1, owner, group, size, date, name);
}
public boolean makeDirectory(String dirName) {
DocumentFile newDir = currentDirectory.createDirectory(dirName);
if (newDir != null) {
Log.i(TAG, "Directory created: " + dirName);
return true;
} else {
Log.w(TAG, "Failed to create directory: " + dirName);
return false;
}
}
public boolean removeDirectory(String dirName) {
DocumentFile dir = findFileWithNormalization(currentDirectory, dirName);
if (dir != null && dir.exists() && dir.isDirectory() && dir.delete()) {
Log.i(TAG, "Directory removed: " + dirName);
return true;
} else {
Log.w(TAG, "Failed to remove directory: " + dirName);
return false;
}
}
public boolean deleteFile(String fileName) {
DocumentFile file = findFileWithNormalization(currentDirectory, fileName);
if (file != null && file.exists() && file.isFile() && file.delete()) {
Log.i(TAG, "File deleted: " + fileName);
return true;
} else {
Log.w(TAG, "Failed to delete file: " + fileName);
return false;
}
}
public DocumentFile getFile(String fileName) {
return findFileWithNormalization(currentDirectory, fileName);
}
public long getFileSize(String fileName) {
DocumentFile file = getFile(fileName);
return (file != null && file.isFile()) ? file.length() : -1;
}
private String getRelativePath(DocumentFile file) {
if (file == null) {
return "";
}
if (isSameFile(file, rootDirectory)) {
return "";
}
List<String> pathParts = new ArrayList<>();
DocumentFile current = file;
while (current != null && !isSameFile(current, rootDirectory)) {
pathParts.add(0, current.getName());
current = current.getParentFile();
}
if (current == null) {
return "";
}
StringBuilder sb = new StringBuilder();
for (int i = 0; i < pathParts.size(); i++) {
sb.append(pathParts.get(i));
if (i < pathParts.size() - 1) {
sb.append("/");
}
}
return sb.toString();
}
private boolean isSameFile(DocumentFile file1, DocumentFile file2) {
if (file1 == null || file2 == null) {
return false;
}
return file1.getUri().equals(file2.getUri());
}
private boolean isSubDirectory(DocumentFile child, DocumentFile parent) {
if (child == null || parent == null) {
return false;
}
if (isSameFile(child, parent)) {
return true;
}
DocumentFile current = child;
while (current != null) {
if (isSameFile(current, parent)) {
return true;
}
current = current.getParentFile();
}
return false;
}
private DocumentFile findDocumentFile(DocumentFile parent, String path) {
if (path == null || path.isEmpty()) {
return parent;
}
String[] parts = path.split("/");
DocumentFile current = parent;
for (String part : parts) {
if (part.isEmpty() || part.equals(".")) {
continue;
}
if (part.equals("..")) {
DocumentFile parentFile = current.getParentFile();
if (parentFile != null && isSubDirectory(parentFile, rootDirectory)) {
current = parentFile;
}
continue;
}
DocumentFile next = findFileWithNormalization(current, part);
if (next == null) {
return null;
}
current = next;
}
return current;
}
public DocumentFile getRootDirectory() {
return rootDirectory;
}
public DocumentFile getCurrentDirectory() {
return currentDirectory;
}
public Context getContext() {
return context;
}
/**
* Find a file with Unicode normalization handling for macOS compatibility.
* This method tries multiple approaches to find the file:
* 1. Direct match with given name
* 2. Try NFD normalization (macOS format)
* 3. Manual search with NFC normalization comparison
*/
private DocumentFile findFileWithNormalization(DocumentFile parent, String fileName) {
if (parent == null || fileName == null || fileName.isEmpty()) {
return null;
}
// Try to find file with exact name first
DocumentFile file = parent.findFile(fileName);
if (file != null && file.exists()) {
return file;
}
// If not found, try with NFD normalization (for macOS compatibility)
String nfdFileName = Normalizer.normalize(fileName, Normalizer.Form.NFD);
if (!nfdFileName.equals(fileName)) {
file = parent.findFile(nfdFileName);
if (file != null && file.exists()) {
return file;
}
}
// If still not found, manually search through all files
// This handles cases where filesystem has mixed normalization
DocumentFile[] files = parent.listFiles();
if (files != null) {
String normalizedFileName = Normalizer.normalize(fileName, Normalizer.Form.NFC);
for (DocumentFile f : files) {
String name = f.getName();
if (name != null) {
// Compare both NFC normalized forms
String normalizedName = Normalizer.normalize(name, Normalizer.Form.NFC);
if (normalizedName.equals(normalizedFileName)) {
Log.d(TAG, "Found file with normalized match: '" + name + "' == '" + fileName + "'");
return f;
}
}
}
}
Log.d(TAG, "File not found with any normalization: " + fileName);
return null;
}
}

View File

@@ -0,0 +1,68 @@
package be.gyu.android.server.ftp;
public class FTPResponse {
// 1xx - Positive Preliminary reply
public static final int RESTART_MARKER = 110;
public static final int SERVICE_READY_IN_N_MINUTES = 120;
public static final int DATA_CONNECTION_ALREADY_OPEN = 125;
public static final int FILE_STATUS_OK = 150;
// 2xx - Positive Completion reply
public static final int COMMAND_OK = 200;
public static final int COMMAND_NOT_IMPLEMENTED = 202;
public static final int SYSTEM_STATUS = 211;
public static final int DIRECTORY_STATUS = 212;
public static final int FILE_STATUS = 213;
public static final int HELP_MESSAGE = 214;
public static final int SYSTEM_TYPE = 215;
public static final int SERVICE_READY = 220;
public static final int SERVICE_CLOSING = 221;
public static final int DATA_CONNECTION_OPEN = 225;
public static final int CLOSING_DATA_CONNECTION = 226;
public static final int ENTERING_PASSIVE_MODE = 227;
public static final int USER_LOGGED_IN = 230;
public static final int REQUESTED_FILE_ACTION_OK = 250;
public static final int PATHNAME_CREATED = 257;
// 3xx - Positive Intermediate reply
public static final int USERNAME_OK_NEED_PASSWORD = 331;
public static final int NEED_ACCOUNT = 332;
public static final int FILE_ACTION_PENDING = 350;
// 4xx - Transient Negative Completion reply
public static final int SERVICE_NOT_AVAILABLE = 421;
public static final int CANNOT_OPEN_DATA_CONNECTION = 425;
public static final int CONNECTION_CLOSED = 426;
public static final int FILE_ACTION_NOT_TAKEN = 450;
public static final int ACTION_ABORTED = 451;
public static final int INSUFFICIENT_STORAGE = 452;
// 5xx - Permanent Negative Completion reply
public static final int SYNTAX_ERROR = 500;
public static final int SYNTAX_ERROR_PARAMETERS = 501;
public static final int COMMAND_NOT_IMPLEMENTED_502 = 502;
public static final int BAD_SEQUENCE = 503;
public static final int COMMAND_NOT_IMPLEMENTED_FOR_PARAMETER = 504;
public static final int NOT_LOGGED_IN = 530;
public static final int NEED_ACCOUNT_FOR_STORING = 532;
public static final int FILE_UNAVAILABLE = 550;
public static final int PAGE_TYPE_UNKNOWN = 551;
public static final int EXCEEDED_STORAGE = 552;
public static final int FILE_NAME_NOT_ALLOWED = 553;
public static String format(int code, String message) {
return code + " " + message + "\r\n";
}
public static String formatMultiline(int code, String[] messages) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < messages.length; i++) {
if (i < messages.length - 1) {
sb.append(code).append("-").append(messages[i]).append("\r\n");
} else {
sb.append(code).append(" ").append(messages[i]).append("\r\n");
}
}
return sb.toString();
}
}

View File

@@ -0,0 +1,129 @@
package be.gyu.android.server.ftp;
import android.content.Context;
import android.net.Uri;
import android.util.Log;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
public class FTPServer {
private static final String TAG = "FTPServer";
private static final int DEFAULT_PORT = 2121;
private static final int MAX_CONNECTIONS = 10;
private ServerSocket serverSocket;
private ExecutorService executorService;
private Thread acceptThread;
private boolean isRunning = false;
private int port;
private Context context;
private Uri rootDirectoryUri;
private int minDataPort = 0;
private int maxDataPort = 0;
private FTPUserManager userManager;
public FTPServer(Context context) {
this(context, DEFAULT_PORT, null, 0, 0);
}
public FTPServer(Context context, int port) {
this(context, port, null, 0, 0);
}
public FTPServer(Context context, int port, Uri rootDirectoryUri) {
this(context, port, rootDirectoryUri, 0, 0);
}
public FTPServer(Context context, int port, Uri rootDirectoryUri, int minDataPort, int maxDataPort) {
this.context = context;
this.port = port;
this.rootDirectoryUri = rootDirectoryUri;
this.minDataPort = minDataPort;
this.maxDataPort = maxDataPort;
this.executorService = Executors.newFixedThreadPool(MAX_CONNECTIONS);
this.userManager = FTPUserManager.getInstance(context);
}
public void start() {
if (isRunning) {
Log.w(TAG, "Server is already running");
return;
}
acceptThread = new Thread(() -> {
try {
serverSocket = new ServerSocket(port);
isRunning = true;
Log.i(TAG, "FTP Server started on port " + port);
while (isRunning && !Thread.currentThread().isInterrupted()) {
try {
Socket clientSocket = serverSocket.accept();
Log.i(TAG, "New client connection from: " + clientSocket.getInetAddress());
FTPSession session = new FTPSession(clientSocket, context, rootDirectoryUri, minDataPort, maxDataPort, userManager);
executorService.execute(session);
} catch (IOException e) {
if (isRunning) {
Log.e(TAG, "Error accepting connection: " + e.getMessage());
}
}
}
} catch (IOException e) {
Log.e(TAG, "Server socket error: " + e.getMessage());
} finally {
Log.i(TAG, "Server accept thread stopped");
}
});
acceptThread.start();
}
public void stop() {
if (!isRunning) {
Log.w(TAG, "Server is not running");
return;
}
Log.i(TAG, "Stopping FTP Server...");
isRunning = false;
try {
if (serverSocket != null && !serverSocket.isClosed()) {
serverSocket.close();
}
} catch (IOException e) {
Log.e(TAG, "Error closing server socket: " + e.getMessage());
}
if (acceptThread != null) {
acceptThread.interrupt();
}
executorService.shutdown();
try {
if (!executorService.awaitTermination(5, TimeUnit.SECONDS)) {
executorService.shutdownNow();
}
} catch (InterruptedException e) {
executorService.shutdownNow();
Thread.currentThread().interrupt();
}
Log.i(TAG, "FTP Server stopped");
}
public boolean isRunning() {
return isRunning;
}
public int getPort() {
return port;
}
}

View File

@@ -0,0 +1,133 @@
package be.gyu.android.server.ftp;
import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Intent;
import android.os.Build;
import android.os.IBinder;
import android.util.Log;
import androidx.core.app.NotificationCompat;
public class FTPService extends Service {
private static final String TAG = "FTPService";
private static final String CHANNEL_ID = "FTPServerChannel";
private static final int NOTIFICATION_ID = 1;
public static final String ACTION_START = "be.gyu.android.server.ftp.ACTION_START";
public static final String ACTION_STOP = "be.gyu.android.server.ftp.ACTION_STOP";
private FTPServer ftpServer;
@Override
public void onCreate() {
super.onCreate();
Log.d(TAG, "Service created");
createNotificationChannel();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
if (intent != null) {
String action = intent.getAction();
if (ACTION_START.equals(action)) {
int port = intent.getIntExtra("port", 2121);
String rootDirUriString = intent.getStringExtra("rootDirUri");
int minDataPort = intent.getIntExtra("minDataPort", 0);
int maxDataPort = intent.getIntExtra("maxDataPort", 0);
android.net.Uri rootDirUri = null;
if (rootDirUriString != null && !rootDirUriString.isEmpty()) {
rootDirUri = android.net.Uri.parse(rootDirUriString);
}
startFTPServer(port, rootDirUri, minDataPort, maxDataPort);
} else if (ACTION_STOP.equals(action)) {
stopFTPServer();
}
}
return START_STICKY;
}
private void startFTPServer(int port, android.net.Uri rootDirUri, int minDataPort, int maxDataPort) {
if (ftpServer != null && ftpServer.isRunning()) {
Log.w(TAG, "FTP Server is already running");
return;
}
ftpServer = new FTPServer(this, port, rootDirUri, minDataPort, maxDataPort);
ftpServer.start();
String notificationText = "FTP Server is running on port " + ftpServer.getPort();
if (minDataPort > 0 && maxDataPort > 0) {
notificationText += " (Data ports: " + minDataPort + "-" + maxDataPort + ")";
}
Notification notification = createNotification(notificationText);
startForeground(NOTIFICATION_ID, notification);
Log.i(TAG, "FTP Server started on port " + port + " with root URI: " + rootDirUri +
", data port range: " + minDataPort + "-" + maxDataPort);
}
private void stopFTPServer() {
if (ftpServer != null) {
ftpServer.stop();
ftpServer = null;
}
stopForeground(true);
stopSelf();
Log.i(TAG, "FTP Server stopped");
}
@Override
public void onDestroy() {
super.onDestroy();
if (ftpServer != null) {
ftpServer.stop();
}
Log.d(TAG, "Service destroyed");
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
private void createNotificationChannel() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel(
CHANNEL_ID,
"FTP Server Service",
NotificationManager.IMPORTANCE_LOW
);
channel.setDescription("FTP Server running notification");
NotificationManager manager = getSystemService(NotificationManager.class);
if (manager != null) {
manager.createNotificationChannel(channel);
}
}
}
private Notification createNotification(String contentText) {
Intent notificationIntent = new Intent(this, MainActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(
this,
0,
notificationIntent,
PendingIntent.FLAG_IMMUTABLE
);
return new NotificationCompat.Builder(this, CHANNEL_ID)
.setContentTitle("FTP Server")
.setContentText(contentText)
.setSmallIcon(android.R.drawable.stat_sys_upload)
.setContentIntent(pendingIntent)
.build();
}
}

View File

@@ -0,0 +1,663 @@
package be.gyu.android.server.ftp;
import android.content.Context;
import android.net.Uri;
import android.util.Log;
import androidx.documentfile.provider.DocumentFile;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.Socket;
import java.nio.charset.StandardCharsets;
import java.text.Normalizer;
public class FTPSession implements Runnable {
private static final String TAG = "FTPSession";
private final Socket controlSocket;
private BufferedReader reader;
private BufferedWriter writer;
private String username;
private boolean isAuthenticated = false;
private boolean isRunning = true;
private FTPFileSystem fileSystem;
private FTPDataConnection dataConnection;
private String transferType = "A"; // A = ASCII, I = Binary
private boolean useUtf8 = true; // UTF-8 enabled by default for better compatibility
private int minDataPort = 0;
private int maxDataPort = 0;
private FTPUserManager userManager;
public FTPSession(Socket socket, Context context) {
this(socket, context, null, 0, 0, null);
}
public FTPSession(Socket socket, Context context, Uri rootDirectoryUri) {
this(socket, context, rootDirectoryUri, 0, 0, null);
}
public FTPSession(Socket socket, Context context, Uri rootDirectoryUri, int minDataPort, int maxDataPort) {
this(socket, context, rootDirectoryUri, minDataPort, maxDataPort, null);
}
public FTPSession(Socket socket, Context context, Uri rootDirectoryUri, int minDataPort, int maxDataPort, FTPUserManager userManager) {
this.controlSocket = socket;
this.fileSystem = new FTPFileSystem(context, rootDirectoryUri);
this.dataConnection = null;
this.minDataPort = minDataPort;
this.maxDataPort = maxDataPort;
this.userManager = userManager;
}
@Override
public void run() {
try {
// Use UTF-8 encoding for better international character support
reader = new BufferedReader(new InputStreamReader(controlSocket.getInputStream(), StandardCharsets.UTF_8));
writer = new BufferedWriter(new OutputStreamWriter(controlSocket.getOutputStream(), StandardCharsets.UTF_8));
Log.d(TAG, "Client connected: " + controlSocket.getInetAddress());
sendResponse(FTPResponse.SERVICE_READY, "FTP Server ready");
String line;
while (isRunning && (line = reader.readLine()) != null) {
line = line.trim();
Log.d(TAG, "Command received: " + line);
if (line.isEmpty()) {
continue;
}
handleCommand(line);
}
} catch (IOException e) {
Log.e(TAG, "Session error: " + e.getMessage());
} finally {
closeSession();
}
}
private void handleCommand(String commandLine) throws IOException {
String[] parts = commandLine.split("\\s+", 2);
String command = parts[0].toUpperCase();
String argument = parts.length > 1 ? parts[1] : "";
switch (command) {
case "USER":
handleUser(argument);
break;
case "PASS":
handlePass(argument);
break;
case "QUIT":
handleQuit();
break;
case "SYST":
handleSyst();
break;
case "PWD":
handlePwd();
break;
case "CWD":
handleCwd(argument);
break;
case "CDUP":
handleCdup();
break;
case "LIST":
handleList(argument);
break;
case "NLST":
handleNlst(argument);
break;
case "MKD":
handleMkd(argument);
break;
case "RMD":
handleRmd(argument);
break;
case "DELE":
handleDele(argument);
break;
case "SIZE":
handleSize(argument);
break;
case "TYPE":
handleType(argument);
break;
case "PASV":
handlePasv();
break;
case "RETR":
handleRetr(argument);
break;
case "STOR":
handleStor(argument);
break;
case "NOOP":
handleNoop();
break;
case "FEAT":
handleFeat();
break;
case "OPTS":
handleOpts(argument);
break;
default:
sendResponse(FTPResponse.COMMAND_NOT_IMPLEMENTED_502, "Command not implemented");
break;
}
}
private void handleUser(String username) throws IOException {
this.username = username;
sendResponse(FTPResponse.USERNAME_OK_NEED_PASSWORD, "Username OK, password required");
}
private void handlePass(String password) throws IOException {
if (username == null || username.isEmpty()) {
sendResponse(FTPResponse.BAD_SEQUENCE, "Login with USER first");
return;
}
// Authenticate using FTPUserManager
if (userManager != null && userManager.authenticate(username, password)) {
isAuthenticated = true;
sendResponse(FTPResponse.USER_LOGGED_IN, "User logged in");
Log.i(TAG, "User authenticated: " + username);
} else {
isAuthenticated = false;
sendResponse(FTPResponse.NOT_LOGGED_IN, "Authentication failed");
Log.w(TAG, "Authentication failed for user: " + username);
}
}
private void handleQuit() throws IOException {
sendResponse(FTPResponse.SERVICE_CLOSING, "Goodbye");
isRunning = false;
}
private void handleSyst() throws IOException {
sendResponse(FTPResponse.SYSTEM_TYPE, "UNIX Type: L8");
}
private void handlePwd() throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
String path = fileSystem.getCurrentPath();
sendResponse(FTPResponse.PATHNAME_CREATED, "\"" + path + "\" is current directory");
}
private void handleCwd(String path) throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
if (path.isEmpty()) {
sendResponse(FTPResponse.SYNTAX_ERROR_PARAMETERS, "No directory specified");
return;
}
// Normalize path for internal use (NFD -> NFC)
path = normalizeFilename(path);
if (fileSystem.changeDirectory(path)) {
String currentPath = fileSystem.getCurrentPath();
sendResponse(FTPResponse.REQUESTED_FILE_ACTION_OK, "Directory changed to " + currentPath);
} else {
sendResponse(FTPResponse.FILE_UNAVAILABLE, "Failed to change directory");
}
}
private void handleCdup() throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
if (fileSystem.changeToParentDirectory()) {
String currentPath = fileSystem.getCurrentPath();
sendResponse(FTPResponse.REQUESTED_FILE_ACTION_OK, "Directory changed to " + currentPath);
} else {
sendResponse(FTPResponse.FILE_UNAVAILABLE, "Already at root directory");
}
}
private void handleList(String path) throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
if (dataConnection == null) {
sendResponse(FTPResponse.CANNOT_OPEN_DATA_CONNECTION, "Use PASV first");
return;
}
String fileList = fileSystem.formatFileList(true);
sendResponse(FTPResponse.FILE_STATUS_OK, "Opening data connection for directory list");
if (dataConnection.acceptConnection()) {
if (dataConnection.sendData(fileList)) {
dataConnection.close();
sendResponse(FTPResponse.CLOSING_DATA_CONNECTION, "Directory send OK");
} else {
dataConnection.close();
sendResponse(FTPResponse.CONNECTION_CLOSED, "Transfer failed");
}
} else {
dataConnection.close();
sendResponse(FTPResponse.CANNOT_OPEN_DATA_CONNECTION, "Cannot open data connection");
}
dataConnection = null;
}
private void handleNlst(String path) throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
if (dataConnection == null) {
sendResponse(FTPResponse.CANNOT_OPEN_DATA_CONNECTION, "Use PASV first");
return;
}
String fileList = fileSystem.formatFileList(false);
sendResponse(FTPResponse.FILE_STATUS_OK, "Opening data connection for name list");
if (dataConnection.acceptConnection()) {
if (dataConnection.sendData(fileList)) {
dataConnection.close();
sendResponse(FTPResponse.CLOSING_DATA_CONNECTION, "Transfer complete");
} else {
dataConnection.close();
sendResponse(FTPResponse.CONNECTION_CLOSED, "Transfer failed");
}
} else {
dataConnection.close();
sendResponse(FTPResponse.CANNOT_OPEN_DATA_CONNECTION, "Cannot open data connection");
}
dataConnection = null;
}
private void handleMkd(String dirName) throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
if (dirName.isEmpty()) {
sendResponse(FTPResponse.SYNTAX_ERROR_PARAMETERS, "No directory name specified");
return;
}
// Normalize filename for MacOS compatibility (NFD -> NFC for storage)
dirName = normalizeFilename(dirName);
if (fileSystem.makeDirectory(dirName)) {
String newPath = fileSystem.getCurrentPath() + "/" + dirName;
sendResponse(FTPResponse.PATHNAME_CREATED, "\"" + newPath + "\" directory created");
} else {
sendResponse(FTPResponse.FILE_UNAVAILABLE, "Failed to create directory");
}
}
private void handleRmd(String dirName) throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
if (dirName.isEmpty()) {
sendResponse(FTPResponse.SYNTAX_ERROR_PARAMETERS, "No directory name specified");
return;
}
// Normalize filename for MacOS compatibility
dirName = normalizeFilename(dirName);
if (fileSystem.removeDirectory(dirName)) {
sendResponse(FTPResponse.REQUESTED_FILE_ACTION_OK, "Directory removed");
} else {
sendResponse(FTPResponse.FILE_UNAVAILABLE, "Failed to remove directory");
}
}
private void handleDele(String fileName) throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
if (fileName.isEmpty()) {
sendResponse(FTPResponse.SYNTAX_ERROR_PARAMETERS, "No file name specified");
return;
}
// Normalize filename for MacOS compatibility
fileName = normalizeFilename(fileName);
if (fileSystem.deleteFile(fileName)) {
sendResponse(FTPResponse.REQUESTED_FILE_ACTION_OK, "File deleted");
} else {
sendResponse(FTPResponse.FILE_UNAVAILABLE, "Failed to delete file");
}
}
private void handleSize(String fileName) throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
if (fileName.isEmpty()) {
sendResponse(FTPResponse.SYNTAX_ERROR_PARAMETERS, "No file name specified");
return;
}
// Normalize filename for MacOS compatibility
fileName = normalizeFilename(fileName);
long size = fileSystem.getFileSize(fileName);
if (size >= 0) {
sendResponse(FTPResponse.FILE_STATUS, String.valueOf(size));
} else {
sendResponse(FTPResponse.FILE_UNAVAILABLE, "File not found");
}
}
private void handleType(String typeCode) throws IOException {
if (typeCode.isEmpty()) {
sendResponse(FTPResponse.SYNTAX_ERROR_PARAMETERS, "No type specified");
return;
}
String type = typeCode.toUpperCase();
if (type.equals("A") || type.equals("I")) {
transferType = type;
String typeName = type.equals("A") ? "ASCII" : "Binary";
sendResponse(FTPResponse.COMMAND_OK, "Type set to " + typeName);
} else {
sendResponse(FTPResponse.COMMAND_NOT_IMPLEMENTED_FOR_PARAMETER, "Type not supported");
}
}
private void handlePasv() throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
// Close previous data connection if exists
if (dataConnection != null) {
dataConnection.close();
}
dataConnection = new FTPDataConnection();
// Get server address from control socket
String serverAddress = controlSocket.getLocalAddress().getHostAddress();
if (dataConnection.openPassiveMode(controlSocket.getLocalAddress(), minDataPort, maxDataPort)) {
int port = dataConnection.getPassivePort();
// Format: h1,h2,h3,h4,p1,p2
// where IP is h1.h2.h3.h4 and port is p1*256+p2
String[] addressParts = serverAddress.split("\\.");
int p1 = port / 256;
int p2 = port % 256;
String pasvResponse = String.format("Entering Passive Mode (%s,%s,%s,%s,%d,%d)",
addressParts[0], addressParts[1], addressParts[2], addressParts[3], p1, p2);
sendResponse(FTPResponse.ENTERING_PASSIVE_MODE, pasvResponse);
Log.i(TAG, "Passive mode: " + serverAddress + ":" + port);
} else {
sendResponse(FTPResponse.CANNOT_OPEN_DATA_CONNECTION, "Cannot open passive mode");
}
}
private void handleRetr(String fileName) throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
if (fileName.isEmpty()) {
sendResponse(FTPResponse.SYNTAX_ERROR_PARAMETERS, "No file name specified");
return;
}
if (dataConnection == null) {
sendResponse(FTPResponse.CANNOT_OPEN_DATA_CONNECTION, "Use PASV first");
return;
}
// Normalize filename for MacOS compatibility
fileName = normalizeFilename(fileName);
DocumentFile file = fileSystem.getFile(fileName);
if (file == null || !file.exists() || !file.isFile()) {
sendResponse(FTPResponse.FILE_UNAVAILABLE, "File not found");
dataConnection.close();
dataConnection = null;
return;
}
sendResponse(FTPResponse.FILE_STATUS_OK, "Opening data connection for " + fileName + " (" + file.length() + " bytes)");
if (dataConnection.acceptConnection()) {
try {
InputStream fis = fileSystem.getContext().getContentResolver().openInputStream(file.getUri());
if (fis != null && dataConnection.transferStream(fis)) {
fis.close();
dataConnection.close();
sendResponse(FTPResponse.CLOSING_DATA_CONNECTION, "Transfer complete");
Log.i(TAG, "File sent: " + fileName + " (" + file.length() + " bytes)");
} else {
if (fis != null) fis.close();
dataConnection.close();
sendResponse(FTPResponse.CONNECTION_CLOSED, "Transfer failed");
}
} catch (Exception e) {
Log.e(TAG, "Error sending file: " + e.getMessage());
dataConnection.close();
sendResponse(FTPResponse.CONNECTION_CLOSED, "Transfer error: " + e.getMessage());
}
} else {
dataConnection.close();
sendResponse(FTPResponse.CANNOT_OPEN_DATA_CONNECTION, "Cannot open data connection");
}
dataConnection = null;
}
private void handleStor(String fileName) throws IOException {
if (!isAuthenticated) {
sendResponse(FTPResponse.NOT_LOGGED_IN, "Please login first");
return;
}
if (fileName.isEmpty()) {
sendResponse(FTPResponse.SYNTAX_ERROR_PARAMETERS, "No file name specified");
return;
}
if (dataConnection == null) {
sendResponse(FTPResponse.CANNOT_OPEN_DATA_CONNECTION, "Use PASV first");
return;
}
// Normalize filename for MacOS compatibility
fileName = normalizeFilename(fileName);
// Create or get the file in the current directory
DocumentFile currentDir = fileSystem.getCurrentDirectory();
DocumentFile file = currentDir.findFile(fileName);
// If file doesn't exist, create it
if (file == null) {
file = currentDir.createFile("application/octet-stream", fileName);
}
if (file == null) {
sendResponse(FTPResponse.FILE_UNAVAILABLE, "Cannot create file");
dataConnection.close();
dataConnection = null;
return;
}
sendResponse(FTPResponse.FILE_STATUS_OK, "Opening data connection for " + fileName);
if (dataConnection.acceptConnection()) {
try {
OutputStream fos = fileSystem.getContext().getContentResolver().openOutputStream(file.getUri(), "wt");
if (fos != null && dataConnection.receiveStream(fos)) {
fos.close();
dataConnection.close();
sendResponse(FTPResponse.CLOSING_DATA_CONNECTION, "Transfer complete");
Log.i(TAG, "File received: " + fileName + " (" + file.length() + " bytes)");
} else {
if (fos != null) fos.close();
dataConnection.close();
sendResponse(FTPResponse.CONNECTION_CLOSED, "Transfer failed");
}
} catch (Exception e) {
Log.e(TAG, "Error receiving file: " + e.getMessage());
dataConnection.close();
sendResponse(FTPResponse.CONNECTION_CLOSED, "Transfer error: " + e.getMessage());
}
} else {
dataConnection.close();
sendResponse(FTPResponse.CANNOT_OPEN_DATA_CONNECTION, "Cannot open data connection");
}
dataConnection = null;
}
private void handleNoop() throws IOException {
sendResponse(FTPResponse.COMMAND_OK, "OK");
}
private void handleFeat() throws IOException {
// Send list of supported features
writer.write("211-Features:\r\n");
writer.write(" UTF8\r\n");
writer.write(" SIZE\r\n");
writer.write(" PASV\r\n");
writer.write("211 End\r\n");
writer.flush();
Log.d(TAG, "FEAT command handled");
}
private void handleOpts(String options) throws IOException {
if (options.isEmpty()) {
sendResponse(FTPResponse.SYNTAX_ERROR_PARAMETERS, "No options specified");
return;
}
String[] parts = options.split("\\s+", 2);
String option = parts[0].toUpperCase();
String value = parts.length > 1 ? parts[1].toUpperCase() : "";
if (option.equals("UTF8")) {
if (value.equals("ON") || value.isEmpty()) {
useUtf8 = true;
sendResponse(FTPResponse.COMMAND_OK, "UTF8 enabled");
Log.d(TAG, "UTF-8 encoding enabled");
} else if (value.equals("OFF")) {
useUtf8 = false;
sendResponse(FTPResponse.COMMAND_OK, "UTF8 disabled");
Log.d(TAG, "UTF-8 encoding disabled");
} else {
sendResponse(FTPResponse.SYNTAX_ERROR_PARAMETERS, "Invalid UTF8 option");
}
} else {
sendResponse(FTPResponse.COMMAND_NOT_IMPLEMENTED_FOR_PARAMETER, "Option not supported");
}
}
/**
* Normalize filename from MacOS NFD (Decomposed) to NFC (Composed) format.
* MacOS uses NFD normalization for filenames, which can cause issues on Android/Windows.
* This method converts filenames to NFC format for compatibility.
* Used when RECEIVING filenames from client (STOR, RETR, DELE, etc.)
*/
private String normalizeFilename(String filename) {
if (filename == null || filename.isEmpty()) {
return filename;
}
// Normalize to NFC (Canonical Decomposition, followed by Canonical Composition)
String normalized = Normalizer.normalize(filename, Normalizer.Form.NFC);
Log.d(TAG, "Filename normalized NFD->NFC: '" + filename + "' -> '" + normalized + "'");
return normalized;
}
/**
* Normalize filename to NFD (Decomposed) format for MacOS compatibility.
* MacOS expects filenames in NFD format for proper display.
* This method converts filenames from NFC to NFD format.
* Used when SENDING filenames to client (LIST, NLST, PWD, etc.)
*/
private String denormalizeFilename(String filename) {
if (filename == null || filename.isEmpty()) {
return filename;
}
// Normalize to NFD (Canonical Decomposition) for MacOS
String normalized = Normalizer.normalize(filename, Normalizer.Form.NFD);
Log.d(TAG, "Filename normalized NFC->NFD: '" + filename + "' -> '" + normalized + "'");
return normalized;
}
/**
* Convert entire file list to NFD format for MacOS compatibility.
* This method normalizes all filenames in the file list string to NFD format.
*/
private String convertFileListToNFD(String fileList) {
if (fileList == null || fileList.isEmpty()) {
return fileList;
}
// Normalize entire string to NFD for MacOS
String normalized = Normalizer.normalize(fileList, Normalizer.Form.NFD);
Log.d(TAG, "File list converted to NFD for MacOS");
return normalized;
}
private void sendResponse(int code, String message) throws IOException {
String response = FTPResponse.format(code, message);
writer.write(response);
writer.flush();
Log.d(TAG, "Response sent: " + response.trim());
}
private void closeSession() {
try {
if (dataConnection != null) {
dataConnection.close();
}
if (reader != null) reader.close();
if (writer != null) writer.close();
if (controlSocket != null && !controlSocket.isClosed()) {
controlSocket.close();
}
Log.d(TAG, "Session closed");
} catch (IOException e) {
Log.e(TAG, "Error closing session: " + e.getMessage());
}
}
}

View File

@@ -0,0 +1,53 @@
package be.gyu.android.server.ftp;
import org.json.JSONException;
import org.json.JSONObject;
public class FTPUser {
private String username;
private String passwordHash;
private long createdTimestamp;
public FTPUser(String username, String passwordHash) {
this.username = username;
this.passwordHash = passwordHash;
this.createdTimestamp = System.currentTimeMillis();
}
public FTPUser(String username, String passwordHash, long createdTimestamp) {
this.username = username;
this.passwordHash = passwordHash;
this.createdTimestamp = createdTimestamp;
}
public String getUsername() {
return username;
}
public String getPasswordHash() {
return passwordHash;
}
public long getCreatedTimestamp() {
return createdTimestamp;
}
public void setPasswordHash(String passwordHash) {
this.passwordHash = passwordHash;
}
public JSONObject toJson() throws JSONException {
JSONObject json = new JSONObject();
json.put("username", username);
json.put("passwordHash", passwordHash);
json.put("createdTimestamp", createdTimestamp);
return json;
}
public static FTPUser fromJson(JSONObject json) throws JSONException {
String username = json.getString("username");
String passwordHash = json.getString("passwordHash");
long createdTimestamp = json.optLong("createdTimestamp", System.currentTimeMillis());
return new FTPUser(username, passwordHash, createdTimestamp);
}
}

View File

@@ -0,0 +1,211 @@
package be.gyu.android.server.ftp;
import android.content.Context;
import android.content.SharedPreferences;
import android.util.Log;
import androidx.security.crypto.EncryptedSharedPreferences;
import androidx.security.crypto.MasterKey;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.List;
public class FTPUserManager {
private static final String TAG = "FTPUserManager";
private static final String PREF_NAME = "ftp_users_encrypted";
private static final String KEY_USERS = "ftp_users";
private static FTPUserManager instance;
private SharedPreferences encryptedPrefs;
private FTPUserManager(Context context) {
try {
MasterKey masterKey = new MasterKey.Builder(context)
.setKeyScheme(MasterKey.KeyScheme.AES256_GCM)
.build();
encryptedPrefs = EncryptedSharedPreferences.create(
context,
PREF_NAME,
masterKey,
EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM
);
} catch (Exception e) {
Log.e(TAG, "Failed to create encrypted preferences: " + e.getMessage());
}
}
public static synchronized FTPUserManager getInstance(Context context) {
if (instance == null) {
instance = new FTPUserManager(context.getApplicationContext());
}
return instance;
}
public synchronized boolean addUser(String username, String password) {
if (!isValidUsername(username) || !isValidPassword(password)) {
return false;
}
if (userExists(username)) {
Log.w(TAG, "User already exists: " + username);
return false;
}
List<FTPUser> users = loadUsers();
String passwordHash = hashPassword(password, username);
users.add(new FTPUser(username, passwordHash));
saveUsers(users);
Log.i(TAG, "User added: " + username);
return true;
}
public synchronized boolean updateUser(String username, String newPassword) {
if (!isValidPassword(newPassword)) {
return false;
}
List<FTPUser> users = loadUsers();
for (FTPUser user : users) {
if (user.getUsername().equals(username)) {
String newPasswordHash = hashPassword(newPassword, username);
user.setPasswordHash(newPasswordHash);
saveUsers(users);
Log.i(TAG, "User updated: " + username);
return true;
}
}
Log.w(TAG, "User not found for update: " + username);
return false;
}
public synchronized boolean deleteUser(String username) {
List<FTPUser> users = loadUsers();
// Prevent deleting the last user
if (users.size() <= 1) {
Log.w(TAG, "Cannot delete last user");
return false;
}
boolean removed = users.removeIf(user -> user.getUsername().equals(username));
if (removed) {
saveUsers(users);
Log.i(TAG, "User deleted: " + username);
}
return removed;
}
public synchronized List<FTPUser> getAllUsers() {
return new ArrayList<>(loadUsers());
}
public synchronized FTPUser getUser(String username) {
List<FTPUser> users = loadUsers();
for (FTPUser user : users) {
if (user.getUsername().equals(username)) {
return user;
}
}
return null;
}
public synchronized boolean authenticate(String username, String password) {
FTPUser user = getUser(username);
if (user == null) {
Log.w(TAG, "Authentication failed - user not found: " + username);
return false;
}
String passwordHash = hashPassword(password, username);
boolean authenticated = passwordHash.equals(user.getPasswordHash());
if (authenticated) {
Log.i(TAG, "User authenticated: " + username);
} else {
Log.w(TAG, "Authentication failed - wrong password: " + username);
}
return authenticated;
}
public boolean userExists(String username) {
return getUser(username) != null;
}
public boolean isValidUsername(String username) {
if (username == null || username.trim().isEmpty()) {
return false;
}
username = username.trim();
return username.length() >= 3 &&
username.length() <= 20 &&
username.matches("^[a-zA-Z0-9_]+$");
}
public boolean isValidPassword(String password) {
return password != null && password.length() >= 4;
}
private String hashPassword(String password, String salt) {
try {
MessageDigest digest = MessageDigest.getInstance("SHA-256");
String saltedPassword = salt + password;
byte[] hash = digest.digest(saltedPassword.getBytes(StandardCharsets.UTF_8));
// Convert to hex string
StringBuilder hexString = new StringBuilder();
for (byte b : hash) {
String hex = Integer.toHexString(0xff & b);
if (hex.length() == 1) hexString.append('0');
hexString.append(hex);
}
return hexString.toString();
} catch (NoSuchAlgorithmException e) {
Log.e(TAG, "SHA-256 not available: " + e.getMessage());
return "";
}
}
private List<FTPUser> loadUsers() {
List<FTPUser> users = new ArrayList<>();
String usersJson = encryptedPrefs.getString(KEY_USERS, "[]");
try {
JSONArray jsonArray = new JSONArray(usersJson);
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject userJson = jsonArray.getJSONObject(i);
users.add(FTPUser.fromJson(userJson));
}
} catch (JSONException e) {
Log.e(TAG, "Error loading users: " + e.getMessage());
}
return users;
}
private void saveUsers(List<FTPUser> users) {
try {
JSONArray jsonArray = new JSONArray();
for (FTPUser user : users) {
jsonArray.put(user.toJson());
}
encryptedPrefs.edit()
.putString(KEY_USERS, jsonArray.toString())
.apply();
} catch (JSONException e) {
Log.e(TAG, "Error saving users: " + e.getMessage());
}
}
}

View File

@@ -0,0 +1,333 @@
package be.gyu.android.server.ftp;
import androidx.activity.result.ActivityResultLauncher;
import androidx.activity.result.contract.ActivityResultContracts;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;
import androidx.core.content.ContextCompat;
import androidx.documentfile.provider.DocumentFile;
import android.Manifest;
import android.app.ActivityManager;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.os.Environment;
import android.provider.Settings;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
private static final int PERMISSION_REQUEST_CODE = 100;
private TextView statusTextView;
private TextView portTextView;
private Button startButton;
private Button stopButton;
private EditText portEditText;
private TextView rootDirPathTextView;
private Button selectDirButton;
private Button saveSettingsButton;
private EditText minDataPortEditText;
private EditText maxDataPortEditText;
private Button manageUsersButton;
private FTPConfig config;
private ActivityResultLauncher<Uri> directoryPickerLauncher;
private boolean isServerRunning = false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
config = new FTPConfig(this);
setupDirectoryPicker();
initViews();
loadSettings();
setupListeners();
requestPermissions();
initializeDefaultUser();
}
private void setupDirectoryPicker() {
directoryPickerLauncher = registerForActivityResult(
new ActivityResultContracts.OpenDocumentTree(),
uri -> {
if (uri != null) {
getContentResolver().takePersistableUriPermission(
uri,
Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION
);
DocumentFile pickedDir = DocumentFile.fromTreeUri(this, uri);
if (pickedDir != null && pickedDir.isDirectory()) {
String path = uri.getPath();
if (path != null) {
path = path.replace("/tree/primary:", "/storage/emulated/0/");
path = path.replace("/tree/", "/");
}
rootDirPathTextView.setText(path != null ? path : uri.toString());
config.setRootDirectoryUri(uri.toString());
config.setRootDirectoryPath(path);
Toast.makeText(this, "Directory selected", Toast.LENGTH_SHORT).show();
}
}
}
);
}
private void initViews() {
statusTextView = findViewById(R.id.statusTextView);
portTextView = findViewById(R.id.portTextView);
startButton = findViewById(R.id.startButton);
stopButton = findViewById(R.id.stopButton);
portEditText = findViewById(R.id.portEditText);
rootDirPathTextView = findViewById(R.id.rootDirPathTextView);
selectDirButton = findViewById(R.id.selectDirButton);
saveSettingsButton = findViewById(R.id.saveSettingsButton);
minDataPortEditText = findViewById(R.id.minDataPortEditText);
maxDataPortEditText = findViewById(R.id.maxDataPortEditText);
manageUsersButton = findViewById(R.id.manageUsersButton);
}
private void loadSettings() {
int port = config.getPort();
String rootPath = config.getRootDirectoryPath();
int minDataPort = config.getMinDataPort();
int maxDataPort = config.getMaxDataPort();
portEditText.setText(String.valueOf(port));
portTextView.setText("Port: " + port);
if (rootPath != null && !rootPath.isEmpty()) {
rootDirPathTextView.setText(rootPath);
} else {
rootDirPathTextView.setText("Not selected");
}
minDataPortEditText.setText(String.valueOf(minDataPort));
maxDataPortEditText.setText(String.valueOf(maxDataPort));
}
private void setupListeners() {
startButton.setOnClickListener(v -> startFTPServer());
stopButton.setOnClickListener(v -> stopFTPServer());
selectDirButton.setOnClickListener(v -> selectDirectory());
saveSettingsButton.setOnClickListener(v -> saveSettings());
manageUsersButton.setOnClickListener(v -> openUserManagement());
}
private void selectDirectory() {
directoryPickerLauncher.launch(null);
}
private void saveSettings() {
String portStr = portEditText.getText().toString().trim();
if (portStr.isEmpty()) {
Toast.makeText(this, "Please enter a port number", Toast.LENGTH_SHORT).show();
return;
}
int port;
try {
port = Integer.parseInt(portStr);
if (port < 1024 || port > 65535) {
Toast.makeText(this, "Port must be between 1024 and 65535", Toast.LENGTH_SHORT).show();
return;
}
} catch (NumberFormatException e) {
Toast.makeText(this, "Invalid port number", Toast.LENGTH_SHORT).show();
return;
}
if (!config.hasRootDirectory()) {
Toast.makeText(this, "Please select a root directory", Toast.LENGTH_SHORT).show();
return;
}
// Validate data port range
String minPortStr = minDataPortEditText.getText().toString().trim();
String maxPortStr = maxDataPortEditText.getText().toString().trim();
int minDataPort = 0;
int maxDataPort = 0;
if (!minPortStr.isEmpty() || !maxPortStr.isEmpty()) {
if (minPortStr.isEmpty() || maxPortStr.isEmpty()) {
Toast.makeText(this, "Please enter both min and max data ports or leave both empty", Toast.LENGTH_SHORT).show();
return;
}
try {
minDataPort = Integer.parseInt(minPortStr);
maxDataPort = Integer.parseInt(maxPortStr);
if (minDataPort < 1024 || minDataPort > 65535 || maxDataPort < 1024 || maxDataPort > 65535) {
Toast.makeText(this, "Data ports must be between 1024 and 65535", Toast.LENGTH_SHORT).show();
return;
}
if (minDataPort >= maxDataPort) {
Toast.makeText(this, "Min data port must be less than max data port", Toast.LENGTH_SHORT).show();
return;
}
if (maxDataPort - minDataPort < 10) {
Toast.makeText(this, "Data port range should be at least 10 ports", Toast.LENGTH_SHORT).show();
return;
}
} catch (NumberFormatException e) {
Toast.makeText(this, "Invalid data port number", Toast.LENGTH_SHORT).show();
return;
}
}
config.setPort(port);
config.setDataPortRange(minDataPort, maxDataPort);
portTextView.setText("Port: " + port);
Toast.makeText(this, "Settings saved", Toast.LENGTH_SHORT).show();
}
private void requestPermissions() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
// Android 11+ - Need MANAGE_EXTERNAL_STORAGE
if (!Environment.isExternalStorageManager()) {
try {
Intent intent = new Intent(Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION);
intent.setData(Uri.parse("package:" + getPackageName()));
startActivity(intent);
Toast.makeText(this, "Please grant 'All files access' permission", Toast.LENGTH_LONG).show();
} catch (Exception e) {
Intent intent = new Intent(Settings.ACTION_MANAGE_ALL_FILES_ACCESS_PERMISSION);
startActivity(intent);
}
}
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
// Android 6.0 - 10
if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE)
!= PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(this,
new String[]{
Manifest.permission.READ_EXTERNAL_STORAGE,
Manifest.permission.WRITE_EXTERNAL_STORAGE
},
PERMISSION_REQUEST_CODE);
}
}
}
private void startFTPServer() {
// Check permission first
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
if (!Environment.isExternalStorageManager()) {
Toast.makeText(this, "Please grant 'All files access' permission first", Toast.LENGTH_LONG).show();
requestPermissions();
return;
}
}
String rootDirUri = config.getRootDirectoryUri();
if (rootDirUri == null || rootDirUri.isEmpty()) {
Toast.makeText(this, "Please select a root directory first", Toast.LENGTH_LONG).show();
return;
}
Intent serviceIntent = new Intent(this, FTPService.class);
serviceIntent.setAction(FTPService.ACTION_START);
serviceIntent.putExtra("port", config.getPort());
serviceIntent.putExtra("rootDirUri", rootDirUri);
serviceIntent.putExtra("minDataPort", config.getMinDataPort());
serviceIntent.putExtra("maxDataPort", config.getMaxDataPort());
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
startForegroundService(serviceIntent);
} else {
startService(serviceIntent);
}
isServerRunning = true;
updateUI();
Toast.makeText(this, "FTP Server Started on port " + config.getPort(), Toast.LENGTH_SHORT).show();
}
private void stopFTPServer() {
Intent serviceIntent = new Intent(this, FTPService.class);
serviceIntent.setAction(FTPService.ACTION_STOP);
startService(serviceIntent);
isServerRunning = false;
updateUI();
Toast.makeText(this, "FTP Server Stopped", Toast.LENGTH_SHORT).show();
}
private void updateUI() {
if (isServerRunning) {
statusTextView.setText("Server Status: Running");
startButton.setEnabled(false);
stopButton.setEnabled(true);
} else {
statusTextView.setText("Server Status: Stopped");
startButton.setEnabled(true);
stopButton.setEnabled(false);
}
}
@Override
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
if (requestCode == PERMISSION_REQUEST_CODE) {
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
Toast.makeText(this, "Permissions granted", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(this, "Permissions denied. App may not work correctly.", Toast.LENGTH_LONG).show();
}
}
}
/**
* Check if FTPService is currently running in the background
*/
private boolean isServiceRunning() {
ActivityManager manager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
if (manager != null) {
for (ActivityManager.RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
if (FTPService.class.getName().equals(service.service.getClassName())) {
return true;
}
}
}
return false;
}
@Override
protected void onResume() {
super.onResume();
// Sync UI with actual service state when activity resumes
isServerRunning = isServiceRunning();
updateUI();
}
private void openUserManagement() {
Intent intent = new Intent(this, UserManagementActivity.class);
startActivity(intent);
}
private void initializeDefaultUser() {
FTPUserManager userManager = FTPUserManager.getInstance(this);
if (userManager.getAllUsers().isEmpty()) {
userManager.addUser("admin", "admin");
Toast.makeText(this, "Default user created: admin/admin\nPlease change the password in User Management", Toast.LENGTH_LONG).show();
}
}
}

View File

@@ -0,0 +1,252 @@
package be.gyu.android.server.ftp;
import android.app.AlertDialog;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;
import java.util.ArrayList;
import java.util.List;
public class UserManagementActivity extends AppCompatActivity {
private FTPUserManager userManager;
private ListView userListView;
private UserListAdapter userAdapter;
private List<FTPUser> userList;
private TextView emptyView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_user_management);
userManager = FTPUserManager.getInstance(this);
initViews();
setupListeners();
refreshUserList();
}
private void initViews() {
userListView = findViewById(R.id.userListView);
emptyView = findViewById(R.id.emptyView);
Button addUserButton = findViewById(R.id.addUserButton);
userList = new ArrayList<>();
userAdapter = new UserListAdapter();
userListView.setAdapter(userAdapter);
userListView.setEmptyView(emptyView);
}
private void setupListeners() {
findViewById(R.id.addUserButton).setOnClickListener(v -> showAddUserDialog());
}
private void showAddUserDialog() {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
View dialogView = LayoutInflater.from(this).inflate(R.layout.dialog_add_user, null);
builder.setView(dialogView);
TextView dialogTitle = dialogView.findViewById(R.id.dialogTitle);
EditText usernameEditText = dialogView.findViewById(R.id.usernameEditText);
EditText passwordEditText = dialogView.findViewById(R.id.passwordEditText);
EditText confirmPasswordEditText = dialogView.findViewById(R.id.confirmPasswordEditText);
TextView errorTextView = dialogView.findViewById(R.id.errorTextView);
Button saveButton = dialogView.findViewById(R.id.saveButton);
Button cancelButton = dialogView.findViewById(R.id.cancelButton);
dialogTitle.setText("Add User");
AlertDialog dialog = builder.create();
saveButton.setOnClickListener(v -> {
String username = usernameEditText.getText().toString().trim();
String password = passwordEditText.getText().toString();
String confirmPassword = confirmPasswordEditText.getText().toString();
// Validate username
if (username.isEmpty()) {
errorTextView.setText("Username is required");
errorTextView.setVisibility(View.VISIBLE);
return;
}
if (!userManager.isValidUsername(username)) {
errorTextView.setText("Username must be 3-20 characters, alphanumeric + underscore");
errorTextView.setVisibility(View.VISIBLE);
return;
}
if (userManager.userExists(username)) {
errorTextView.setText("Username already exists");
errorTextView.setVisibility(View.VISIBLE);
return;
}
// Validate password
if (password.isEmpty()) {
errorTextView.setText("Password is required");
errorTextView.setVisibility(View.VISIBLE);
return;
}
if (!userManager.isValidPassword(password)) {
errorTextView.setText("Password must be at least 4 characters");
errorTextView.setVisibility(View.VISIBLE);
return;
}
if (!password.equals(confirmPassword)) {
errorTextView.setText("Passwords do not match");
errorTextView.setVisibility(View.VISIBLE);
return;
}
// Add user
if (userManager.addUser(username, password)) {
Toast.makeText(this, "User added successfully", Toast.LENGTH_SHORT).show();
refreshUserList();
dialog.dismiss();
} else {
errorTextView.setText("Failed to add user");
errorTextView.setVisibility(View.VISIBLE);
}
});
cancelButton.setOnClickListener(v -> dialog.dismiss());
dialog.show();
}
private void showEditUserDialog(FTPUser user) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
View dialogView = LayoutInflater.from(this).inflate(R.layout.dialog_add_user, null);
builder.setView(dialogView);
TextView dialogTitle = dialogView.findViewById(R.id.dialogTitle);
EditText usernameEditText = dialogView.findViewById(R.id.usernameEditText);
EditText passwordEditText = dialogView.findViewById(R.id.passwordEditText);
EditText confirmPasswordEditText = dialogView.findViewById(R.id.confirmPasswordEditText);
TextView errorTextView = dialogView.findViewById(R.id.errorTextView);
Button saveButton = dialogView.findViewById(R.id.saveButton);
Button cancelButton = dialogView.findViewById(R.id.cancelButton);
dialogTitle.setText("Edit User");
usernameEditText.setText(user.getUsername());
usernameEditText.setEnabled(false);
AlertDialog dialog = builder.create();
saveButton.setOnClickListener(v -> {
String password = passwordEditText.getText().toString();
String confirmPassword = confirmPasswordEditText.getText().toString();
// Validate password
if (password.isEmpty()) {
errorTextView.setText("Password is required");
errorTextView.setVisibility(View.VISIBLE);
return;
}
if (!userManager.isValidPassword(password)) {
errorTextView.setText("Password must be at least 4 characters");
errorTextView.setVisibility(View.VISIBLE);
return;
}
if (!password.equals(confirmPassword)) {
errorTextView.setText("Passwords do not match");
errorTextView.setVisibility(View.VISIBLE);
return;
}
// Update user
if (userManager.updateUser(user.getUsername(), password)) {
Toast.makeText(this, "User updated successfully", Toast.LENGTH_SHORT).show();
refreshUserList();
dialog.dismiss();
} else {
errorTextView.setText("Failed to update user");
errorTextView.setVisibility(View.VISIBLE);
}
});
cancelButton.setOnClickListener(v -> dialog.dismiss());
dialog.show();
}
private void showDeleteConfirmation(FTPUser user) {
// Check if this is the last user
if (userList.size() <= 1) {
Toast.makeText(this, "Cannot delete the last user", Toast.LENGTH_LONG).show();
return;
}
new AlertDialog.Builder(this)
.setTitle("Delete User")
.setMessage("Are you sure you want to delete user '" + user.getUsername() + "'?")
.setPositiveButton("Delete", (dialog, which) -> {
if (userManager.deleteUser(user.getUsername())) {
Toast.makeText(this, "User deleted successfully", Toast.LENGTH_SHORT).show();
refreshUserList();
} else {
Toast.makeText(this, "Failed to delete user", Toast.LENGTH_SHORT).show();
}
})
.setNegativeButton("Cancel", null)
.show();
}
private void refreshUserList() {
userList.clear();
userList.addAll(userManager.getAllUsers());
userAdapter.notifyDataSetChanged();
}
private class UserListAdapter extends BaseAdapter {
@Override
public int getCount() {
return userList.size();
}
@Override
public Object getItem(int position) {
return userList.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = LayoutInflater.from(UserManagementActivity.this)
.inflate(R.layout.item_user, parent, false);
}
FTPUser user = userList.get(position);
TextView usernameView = convertView.findViewById(R.id.usernameTextView);
Button editButton = convertView.findViewById(R.id.editButton);
Button deleteButton = convertView.findViewById(R.id.deleteButton);
usernameView.setText(user.getUsername());
editButton.setOnClickListener(v -> showEditUserDialog(user));
deleteButton.setOnClickListener(v -> showDeleteConfirmation(user));
return convertView;
}
}
}

View File

@@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

View File

@@ -0,0 +1,170 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>

View File

@@ -0,0 +1,226 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp">
<TextView
android:id="@+id/titleTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Android FTP Server"
android:textSize="24sp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="32dp" />
<TextView
android:id="@+id/statusTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Server Status: Stopped"
android:textSize="16sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/titleTextView"
android:layout_marginTop="24dp" />
<TextView
android:id="@+id/portTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Port: 2121"
android:textSize="14sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/statusTextView"
android:layout_marginTop="8dp" />
<Button
android:id="@+id/startButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Start Server"
android:minWidth="150dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/portTextView"
android:layout_marginTop="32dp" />
<Button
android:id="@+id/stopButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Stop Server"
android:minWidth="150dp"
android:enabled="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/startButton"
android:layout_marginTop="16dp" />
<Button
android:id="@+id/manageUsersButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Manage Users"
android:minWidth="150dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/stopButton"
android:layout_marginTop="16dp" />
<View
android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#CCCCCC"
android:layout_marginTop="32dp"
app:layout_constraintTop_toBottomOf="@id/manageUsersButton"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
<TextView
android:id="@+id/settingsTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Settings"
android:textSize="20sp"
android:textStyle="bold"
android:layout_marginTop="24dp"
app:layout_constraintTop_toBottomOf="@id/divider"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/portLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Port:"
android:textSize="16sp"
android:layout_marginTop="24dp"
app:layout_constraintTop_toBottomOf="@id/settingsTitle"
app:layout_constraintStart_toStartOf="parent" />
<EditText
android:id="@+id/portEditText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:inputType="number"
android:hint="2121"
android:layout_marginStart="16dp"
app:layout_constraintBaseline_toBaselineOf="@id/portLabel"
app:layout_constraintStart_toEndOf="@id/portLabel"
app:layout_constraintEnd_toEndOf="parent" />
<TextView
android:id="@+id/rootDirLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Root Directory:"
android:textSize="16sp"
android:layout_marginTop="16dp"
app:layout_constraintTop_toBottomOf="@id/portLabel"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/rootDirPathTextView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Not selected"
android:textSize="14sp"
android:layout_marginTop="8dp"
android:padding="8dp"
android:background="@android:color/darker_gray"
android:ellipsize="start"
android:singleLine="true"
app:layout_constraintTop_toBottomOf="@id/rootDirLabel"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
<Button
android:id="@+id/selectDirButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Select Directory"
android:layout_marginTop="8dp"
app:layout_constraintTop_toBottomOf="@id/rootDirPathTextView"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/dataPortRangeLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Data Port Range:"
android:textSize="16sp"
android:layout_marginTop="16dp"
app:layout_constraintTop_toBottomOf="@id/selectDirButton"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/minDataPortLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Min:"
android:textSize="14sp"
android:layout_marginTop="8dp"
app:layout_constraintTop_toBottomOf="@id/dataPortRangeLabel"
app:layout_constraintStart_toStartOf="parent" />
<EditText
android:id="@+id/minDataPortEditText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:inputType="number"
android:hint="50000"
android:layout_marginStart="16dp"
app:layout_constraintBaseline_toBaselineOf="@id/minDataPortLabel"
app:layout_constraintStart_toEndOf="@id/minDataPortLabel"
app:layout_constraintEnd_toStartOf="@id/maxDataPortLabel"
app:layout_constraintWidth_default="percent"
app:layout_constraintHorizontal_weight="1" />
<TextView
android:id="@+id/maxDataPortLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Max:"
android:textSize="14sp"
android:layout_marginStart="16dp"
app:layout_constraintBaseline_toBaselineOf="@id/minDataPortLabel"
app:layout_constraintStart_toEndOf="@id/minDataPortEditText" />
<EditText
android:id="@+id/maxDataPortEditText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:inputType="number"
android:hint="50100"
android:layout_marginStart="16dp"
app:layout_constraintBaseline_toBaselineOf="@id/minDataPortLabel"
app:layout_constraintStart_toEndOf="@id/maxDataPortLabel"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintWidth_default="percent"
app:layout_constraintHorizontal_weight="1" />
<Button
android:id="@+id/saveSettingsButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Save Settings"
android:minWidth="150dp"
android:layout_marginTop="24dp"
app:layout_constraintTop_toBottomOf="@id/minDataPortLabel"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>

View File

@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
tools:context=".UserManagementActivity">
<TextView
android:id="@+id/titleTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="User Management"
android:textSize="24sp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="16dp" />
<ListView
android:id="@+id/userListView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="24dp"
android:layout_marginBottom="16dp"
app:layout_constraintTop_toBottomOf="@id/titleTextView"
app:layout_constraintBottom_toTopOf="@id/addUserButton"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
<TextView
android:id="@+id/emptyView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="No users. Add your first user."
android:textSize="16sp"
android:textColor="#999999"
android:visibility="gone"
app:layout_constraintTop_toTopOf="@id/userListView"
app:layout_constraintBottom_toBottomOf="@id/userListView"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
<Button
android:id="@+id/addUserButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add User"
android:minWidth="150dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginBottom="16dp" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -0,0 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="24dp">
<TextView
android:id="@+id/dialogTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add User"
android:textSize="20sp"
android:textStyle="bold"
android:layout_marginBottom="16dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Username:"
android:textSize="14sp"
android:layout_marginBottom="4dp" />
<EditText
android:id="@+id/usernameEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="3-20 characters, alphanumeric + underscore"
android:inputType="text"
android:layout_marginBottom="16dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Password:"
android:textSize="14sp"
android:layout_marginBottom="4dp" />
<EditText
android:id="@+id/passwordEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Minimum 4 characters"
android:inputType="textPassword"
android:layout_marginBottom="16dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Confirm Password:"
android:textSize="14sp"
android:layout_marginBottom="4dp" />
<EditText
android:id="@+id/confirmPasswordEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Re-enter password"
android:inputType="textPassword"
android:layout_marginBottom="8dp" />
<TextView
android:id="@+id/errorTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Error message"
android:textColor="#FF0000"
android:textSize="14sp"
android:visibility="gone"
android:layout_marginBottom="16dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="end">
<Button
android:id="@+id/cancelButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cancel"
style="?android:attr/borderlessButtonStyle"
android:layout_marginEnd="8dp" />
<Button
android:id="@+id/saveButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Save" />
</LinearLayout>
</LinearLayout>

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="16dp"
android:gravity="center_vertical">
<TextView
android:id="@+id/usernameTextView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="16sp"
android:textStyle="bold"
android:text="Username" />
<Button
android:id="@+id/editButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Edit"
android:layout_marginStart="8dp"
style="?android:attr/borderlessButtonStyle" />
<Button
android:id="@+id/deleteButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Delete"
android:layout_marginStart="8dp"
style="?android:attr/borderlessButtonStyle" />
</LinearLayout>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@@ -0,0 +1,16 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Gyub_sAndroidFTPServer" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_200</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorOnPrimary">@color/black</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_200</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
</resources>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="purple_200">#FFBB86FC</color>
<color name="purple_500">#FF6200EE</color>
<color name="purple_700">#FF3700B3</color>
<color name="teal_200">#FF03DAC5</color>
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
</resources>

View File

@@ -0,0 +1,3 @@
<resources>
<string name="app_name">Gyub_s Android FTP Server</string>
</resources>

View File

@@ -0,0 +1,16 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Gyub_sAndroidFTPServer" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_500</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorOnPrimary">@color/white</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_700</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
</resources>

View File

@@ -0,0 +1,17 @@
package be.gyu.android.server.ftp;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
}

9
build.gradle Normal file
View File

@@ -0,0 +1,9 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.1.3' apply false
id 'com.android.library' version '7.1.3' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}

21
gradle.properties Normal file
View File

@@ -0,0 +1,21 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app"s APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true

BIN
gradle/wrapper/gradle-wrapper.jar vendored Normal file

Binary file not shown.

View File

@@ -0,0 +1,6 @@
#Thu Jan 01 02:08:51 KST 2026
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

185
gradlew vendored Normal file
View File

@@ -0,0 +1,185 @@
#!/usr/bin/env sh
#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn () {
echo "$*"
}
die () {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=`expr $i + 1`
done
case $i in
0) set -- ;;
1) set -- "$args0" ;;
2) set -- "$args0" "$args1" ;;
3) set -- "$args0" "$args1" "$args2" ;;
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=`save "$@"`
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
exec "$JAVACMD" "$@"

89
gradlew.bat vendored Normal file
View File

@@ -0,0 +1,89 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega

16
settings.gradle Normal file
View File

@@ -0,0 +1,16 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Gyub_s Android FTP Server"
include ':app'