Skip to main content

SJTU Netdisk command line interface

Project description

jdisk

A CLI tool for SJTU Netdisk

Features:

  • QR Code Authentication - Simple and reliable authentication method
  • Complete File Operations - Upload, download, list, navigate directories
  • Smart Session Management - Persistent authentication with auto-renewal

Quick Start

Installation

Install from PyPI

pip install jdisk

or

uv tool install jdisk

Install from Source

git clone https://github.com/chengjilai/jdisk.git
cd jdisk

# Install dependencies using pixi
pixi install

# Make the jdisk script executable
chmod +x jdisk

# Verify installation
./jdisk --help

First Time Authentication

jdisk auth

Process:

  1. QR code displayed in terminal
  2. Scan with SJTU mobile app

Usage Examples

Basic Operations

# Authentication
jdisk auth                    # QR code authentication

# Directory Listing
jdisk ls                      # List root directory
jdisk ls docs/                # List specific directory

# File Operations
jdisk upload file.txt         # Upload to root directory
jdisk upload file.txt docs/   # Upload to specific directory
jdisk download file.txt       # Download from root directory
jdisk download docs/file.txt  # Download from specific directory

# Directory Management
jdisk mkdir new_folder        # Create directory
jdisk mkdir -p path/to/nested # Create nested directories
jdisk rm file.txt             # Remove file
jdisk rm -r docs/             # Remove directory recursively
jdisk mv old.txt new.txt      # Rename file
jdisk mv file.txt docs/       # Move file to directory

Advanced Usage

# Interactive operations
jdisk rm -i file.txt          # Remove with confirmation
jdisk rm -f nonexistent.txt   # Force remove (ignore errors)
jdisk rm -d empty_dir/        # Remove empty directory

# File operations with paths
jdisk upload ./local/file.txt /remote/path/
jdisk download /remote/file.txt ./local/
jdisk ls /folder/subfolder/

Key Features

Authentication

  • Session Persistence: Save and reuse authentication
  • Auto-Refresh: QR codes refresh to prevent expiration

File Operations

  • Chunked Upload: Efficient large file uploads with progress
  • Direct Download: Fast downloads via S3 presigned URLs
  • Directory Navigation: List and navigate directories
  • Secure Connections: HTTPS/TLS for all communications

User Experience

  • Terminal-Friendly: Optimized for command-line usage
  • Mobile Support: QR code scanning with mobile apps

Authentication Method

QR Code Authentication

Features:

  • Auto-refresh prevents expiration
  • Server-provided security signatures
  • Real-time WebSocket communication

How it works:

  1. Generate unique QR code with server signature
  2. Scan with SJTU mobile app OR visit URL in browser
  3. Login through SJTU JAccount website
  4. System automatically captures authentication
  5. QR code refreshes every 50 seconds to prevent expiration

User Experience:

QR Code Authentication for SJTU Netdisk QR Code Generated: [... QR code displayed in terminal ...]


Project Structure

jdisk/
├── src/                           # Source code directory
│   └── jdisk/                 # Main package
│       ├── __init__.py           # Package initialization
│       ├── auth.py               # Authentication classes
│       ├── client.py             # Main API client
│       ├── cli.py                # CLI interface
│       ├── constants.py          # API constants and URLs
│       ├── download.py           # File download functionality
│       ├── exceptions.py         # Custom exception classes
│       ├── models.py             # Data models
│       ├── jdisk.py           # Main CLI entry point
│       └── upload.py             # File upload functionality
├── pyproject.toml                # Package configuration
├── README.md
├── LICENSE
├── pixi.lock
├── .git
└── .gitignore


Dependencies

[dependencies]
requests
qrcode
websocket-client

Technical Architecture

QR Code Authentication Flow

  1. Extract UUID from SJTU login page
  2. Establish WebSocket connection to jaccount.sjtu.edu.cn
  3. Request QR code signature from server
  4. Generate QR code with server-provided sig/ts values
  5. Display QR code and URL in terminal
  6. Monitor WebSocket for authentication events
  7. Auto-refresh QR code every 50 seconds
  8. Capture JAAuthCookie upon successful login
  9. Complete authentication process

Authentication Security

  • Server-provided signatures: QR codes use proper cryptographic signatures from SJTU servers
  • Auto-refresh mechanism: Prevents QR code expiration with periodic updates every 50 seconds
  • Secure WebSocket communication: Real-time, encrypted communication channels
  • Temporary sessions: Unique UUID for each authentication session
  • Automatic cleanup: Sessions expire and clean up automatically
  • Correct Space ID Handling: QR code authentication now generates sessions with proper space3jvslhfm2b78t space_id

Space Info API Handling

The space info API has been FIXED to handle both response formats:

Success Response Format (Current):

{
  "libraryId": "smh2ax67srucy60s",
  "spaceId": "space3jvslhfm2b78t",
  "accessToken": "acctk019e278500mgm8qjucwuxta2j8swqemzv38ezcn2dzyqxm8ny2agd36pj6zfanmrhuh8way2vgjfs4asdph6s9b69z6zrjy27ulcmjdzqhv8yylpc56dbe8fc",
  "expiresIn": 1800
}

Response Analysis:

  • Status Field Not Required: The API doesn't return a "status" field in successful responses
  • Correct Format: All required fields are directly available (library_id, space_id, accessToken)
  • Proper Access Token: Access token in format acctk... (SJTU-specific token)
  • Expires In: Token has 30-minute expiration for security

Session Structure

QR Code Authentication:

{
  "ja_auth_cookie": "...",
  "user_token": "...",
  "library_id": "smh2...",
  "space_id": "space...",
  "access_token": "acctk...",        // SJTU-specific access token
  "username": "..."
}

File Upload Process

Three-step chunked upload similar to AWS S3:

  1. Initiate: Request upload permission and S3 URLs
  2. Upload: Upload file chunks to S3 using provided credentials
  3. Confirm: Verify upload completion and finalize file

File Download Process

  1. Request: Get download URL from SJTU Netdisk API
  2. Redirect: Follow 302 redirect to S3 presigned URL
  3. Download: Direct download from AWS S3 with progress tracking

API Reference

Base Configuration

Base URL: https://pan.sjtu.edu.cn
Authentication: JAAuthCookie + OAuth 2.0
Storage Backend: AWS S3-compatible (s3pan.jcloud.sjtu.edu.cn)

Authentication Endpoints

JAccount Authentication via JAAuthCookie

The SJTU Netdisk uses JAAuthCookie for authentication, which can be obtained from browser cookies after logging into pan.sjtu.edu.cn.

Authentication Endpoint:

GET https://jaccount.sjtu.edu.cn/oauth2/authorize/xpw8ou8y

Token Exchange:

POST https://pan.sjtu.edu.cn/user/v1/sign-in/verify-account-login/xpw8ou8y

Request Body:

{
  "credential": "{authorization_code}"
}

Response:

{
  "userToken": "128-character token",
  "userId": "user_id",
  "organizations": [
    {
      "libraryId": "library_id",
      "orgUser": {
        "nickname": "username"
      }
    }
  ]
}

Personal Space Information:

POST https://pan.sjtu.edu.cn/user/v1/space/1/personal

Request Parameters:

  • user_token: 128-character user token

Response:

{
  "status": 0,
  "libraryId": "library_id",
  "spaceId": "space_id",
  "accessToken": "access_token",
  "expiresIn": 3600,
  "message": "success"
}

File Upload API

The upload process uses a three-step chunked approach similar to AWS S3 multipart upload.

Step 1: Initiate Upload

POST /api/v1/file/{library_id}/{space_id}/{path}?access_token={access_token}&multipart=null&conflict_resolution_strategy={strategy}

Parameters:

  • library_id: User's library ID
  • space_id: User's space ID
  • path: Remote file path (URL encoded)
  • access_token: Valid access token
  • multipart: Fixed value "null"
  • conflict_resolution_strategy: "rename" or "overwrite"

Request Body:

{
  "partNumberRange": [1, 2, 3]
}

Response:

{
  "confirmKey": "unique_confirmation_key",
  "domain": "s3pan.jcloud.sjtu.edu.cn",
  "path": "/tced-private-{random}-sjtu/{library_id}/{confirmKey}.txt",
  "uploadId": "upload_id",
  "parts": {
    "1": {
      "headers": {
        "x-amz-date": "20251011T025800Z",
        "x-amz-content-sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
        "authorization": "AWS4-HMAC-SHA256 Credential=..."
      }
    }
  },
  "expiration": "2025-10-11T03:13:00.569Z"
}

Step 2: Upload Chunks

PUT https://{domain}{path}?uploadId={uploadId}&partNumber={part_number}

Headers:

  • Content-Type: application/octet-stream
  • Content-Length: Chunk size in bytes
  • Accept: */*
  • Accept-Encoding: gzip, deflate, br
  • Accept-Language: zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7
  • x-amz-date: From step 1 response
  • authorization: From step 1 response
  • x-amz-content-sha256: From step 1 response

Request Body: Binary chunk data

Step 3: Confirm Upload

POST /api/v1/file/{library_id}/{space_id}/{confirmKey}?access_token={access_token}&confirm=null&conflict_resolution_strategy={strategy}

Parameters:

  • confirmKey: From step 1 response
  • access_token: Valid access token
  • confirm: Fixed value "null"
  • conflict_resolution_strategy: "rename" or "overwrite"

Response:

{
  "path": ["folder", "filename.txt"],
  "name": "filename.txt",
  "type": "file",
  "creationTime": "2025-10-11T02:58:15.461Z",
  "modificationTime": "2025-10-11T02:58:15.461Z",
  "contentType": "text/plain",
  "size": "391",
  "eTag": "\"f255a82c43f56b46de4057cc5a393430-1\"",
  "crc64": "11953636811276951993",
  "metaData": {},
  "isOverwritten": false,
  "virusAuditStatus": 0,
  "sensitiveWordAuditStatus": 0,
  "previewByDoc": true,
  "previewByCI": true,
  "previewAsIcon": false,
  "fileType": "text"
}

File Download API

Downloads are handled through a redirect mechanism that provides AWS S3 presigned URLs.

Download Request

GET /api/v1/file/{library_id}/{space_id}/{path}?access_token={access_token}&download=true

Parameters:

  • library_id: User's library ID
  • space_id: User's space ID
  • path: Remote file path
  • access_token: Valid access token
  • download: Fixed value "true"

Response Flow:

  1. 302 Redirect to AWS S3 presigned URL
  2. S3 URL contains AWS4-HMAC-SHA256 signature with 2-hour expiration
  3. Direct Download from s3pan.jcloud.sjtu.edu.cn

S3 URL Pattern:

https://s3pan.jcloud.sjtu.edu.cn/tced-private-{random}-sjtu/{library_id}/{file_id}.txt?
X-Amz-Algorithm=AWS4-HMAC-SHA256&
X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&
X-Amz-Credential={credentials}&
X-Amz-Date={timestamp}&
X-Amz-Expires=7200&
X-Amz-Signature={signature}&
X-Amz-SignedHeaders=host&
response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%27{filename}

Directory Listing API

List Directory Contents

GET /api/v1/directory/{library_id}/{space_id}/{path}?access_token={access_token}&page={page}&page_size={size}

Parameters:

  • library_id: User's library ID
  • space_id: User's space ID
  • path: Directory path (use "/" for root)
  • access_token: Valid access token
  • page: Page number (default: 1)
  • page_size: Items per page (default: 50)

Response:

{
  "path": [""],
  "contents": [
    {
      "name": "filename.txt",
      "type": "file",
      "size": "391",
      "modificationTime": "2025-10-11T03:03:14.000Z",
      "isDir": false
    }
  ],
  "fileCount": 1,
  "subDirCount": 0,
  "totalNum": 1
}

Important Notes

Authentication Requirements

  • Campus Network: SJTU Netdisk typically requires connection through campus network or VPN
  • QR Code Authentication: Scan with SJTU mobile app or visit authentication URL
  • Session Management: Access tokens expire after 1 hour and need renewal

Upload Constraints

  • Chunk Size: 4MB chunks recommended (4,194,304 bytes)
  • Maximum Chunks: 50 chunks per upload session
  • File Size Limit: ~200MB per file (50 chunks × 4MB)
  • Conflict Resolution: Supports "rename" and "overwrite" strategies

Download Features

  • Streaming Support: HTTP Range requests for partial downloads
  • Presigned URLs: S3 URLs are valid for 2 hours
  • Integrity Verification: CRC64 and ETag provided for file verification
  • Browser Compatible: Uses standard HTTP redirects

🚨 Troubleshooting

QR Code Issues

  • "QR code expired": Fixed! Auto-refresh prevents expiration
  • "Invalid signature": Fixed! Uses server-provided signatures
  • "WebSocket timeout: Check network connection to SJTU servers

Authentication Issues

  • "QR code scan failed": Try scanning again or visit the provided URL directly
  • "Session expired": Run jdisk auth to re-authenticate
  • "Network error": Ensure VPN or campus network connection

File Operation Issues

  • "Upload failed": Check file size and network connectivity
  • "Download error": Verify file exists and permissions
  • "Permission denied": Re-authenticate with valid session

Error Handling

  • Status Codes: Standard HTTP status codes
  • Error Format: JSON with status, code, message, and requestId fields
  • Common Errors:
    • 400 Bad Request: Missing parameters or invalid data
    • 401 Unauthorized: Invalid or expired access token
    • 404 Not Found: File or directory does not exist
    • 409 Conflict: File already exists (when conflict_resolution_strategy is not set)
    • 413 Payload Too Large: File exceeds size limits

Development History

Latest Updates

  • QR Code Authentication: Simple and reliable authentication method
  • Server-Provided Signatures: QR codes use proper cryptographic signatures
  • Auto-Refresh Mechanism: QR codes refresh every 50 seconds
  • Enhanced WebSocket Handling: Improved real-time communication
  • Comprehensive Testing: All features verified and working

License

MIT License


Contributing

Contributions welcome! Please ensure:

  • Code follows existing style
  • Documentation is updated
  • Features are backward compatible

🎉 Enjoy using jdisk!

For issues, feature requests, or questions, please check the documentation or create an issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jdisk-0.2.0.tar.gz (27.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jdisk-0.2.0-py3-none-any.whl (33.1 kB view details)

Uploaded Python 3

File details

Details for the file jdisk-0.2.0.tar.gz.

File metadata

  • Download URL: jdisk-0.2.0.tar.gz
  • Upload date:
  • Size: 27.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.2

File hashes

Hashes for jdisk-0.2.0.tar.gz
Algorithm Hash digest
SHA256 3a7db86926d6e95331634487f9bbb35c9f2025df7bda9d2111e283747a681f36
MD5 4b9e88b4906dd7a41bb48ccba1422e96
BLAKE2b-256 e3c571d7a77d51033e7bded869ed44d45d1e43b47c3d67b5e0d0f53c58044767

See more details on using hashes here.

File details

Details for the file jdisk-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: jdisk-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 33.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.2

File hashes

Hashes for jdisk-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cddc868f0101124f0ea60ef160d85418219af27ef69955231a4dce8d0e498862
MD5 b932b82b8435b1c02f72c34ed6554b9b
BLAKE2b-256 1ba388b81f1cca6f8ff1b89dfec24f4c4e5d46f8fe5e251b9365b32cea1ea020

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page