Skip to main content

SJTU Netdisk command line interface

Project description

jdisk

A CLI tool for SJTU Netdisk

โœ… 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

# Install via pip
pip install jdisk

jdisk --help

or

# Install via uv
uv tool install jdisk

jdisk --help

Install from Source

# Clone the repository
git clone https://github.com/chengjilai/jdisk.git
cd jdisk

# Install dependencies using pixi
pixi install

# Run the CLI tool directly
pixi run python jdisk.py --help

# Or create a symbolic link for system-wide access
chmod +x jdisk.py
ln -sf "$(pwd)/jdisk.py" ~/.local/bin/jdisk

# Verify installation
jdisk --help

First Time Authentication

QR Code Authentication ๐Ÿ“ฑ

jdisk auth

Process:

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

๐Ÿ“‹ Usage Examples

Basic Operations

# Authentication
jdisk auth                    # QR code authentication

# File Management
jdisk list                    # List root directory
jdisk list docs/              # List specific directory
jdisk ls                      # Short form of list
jdisk ls docs/                # List docs/ 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

Advanced Usage

# 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.1.9.tar.gz (25.4 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.1.9-py3-none-any.whl (31.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for jdisk-0.1.9.tar.gz
Algorithm Hash digest
SHA256 3518eea53b063bc46f77660d57fb5c15bc7bdceabcd9e0c4058655b1920e858e
MD5 b6e79fba668c66c03953bdb520c22ffb
BLAKE2b-256 31af652ac5da22b1cc89e5e538b10831058abfb8198b7ccf45b28f6df3e012e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for jdisk-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 b372f3ad75eba044aad53ffb7f6369cb1a54132dc827a3e2baea471c7c86582c
MD5 6b8daae211b4520002572e788464cae2
BLAKE2b-256 b4f42b8106b8b4711d722f53229e760c84f7d0ed4c7830aede574490aece3dcf

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