@papercraneai/cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +172 -0
- package/bin/papercrane.js +209 -0
- package/lib/callback-server.js +92 -0
- package/lib/cloud-client.js +193 -0
- package/lib/config.js +97 -0
- package/lib/facebook-auth.js +148 -0
- package/lib/facebook-callback-server.js +105 -0
- package/lib/function-client.js +451 -0
- package/lib/google-auth.js +134 -0
- package/lib/list-credentials.js +116 -0
- package/lib/pkce.js +55 -0
- package/lib/storage.js +234 -0
- package/package.json +30 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
# papercrane
|
|
2
|
+
|
|
3
|
+
A CLI tool for managing OAuth credentials for LLM integrations.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- š Google OAuth 2.0 authentication using PKCE flow
|
|
8
|
+
- š¾ Secure credential storage in `~/.papercrane/google`
|
|
9
|
+
- š List and manage stored credentials
|
|
10
|
+
- š Automatic browser-based authentication flow
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
### Local Development
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install
|
|
18
|
+
chmod +x bin/papercrane.js
|
|
19
|
+
npm link
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Global Installation
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npm install -g papercrane
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Setup
|
|
29
|
+
|
|
30
|
+
Before using papercrane, you need to create OAuth 2.0 credentials in the Google Cloud Console:
|
|
31
|
+
|
|
32
|
+
1. Go to [Google Cloud Console](https://console.cloud.google.com/)
|
|
33
|
+
2. Create a new project or select an existing one
|
|
34
|
+
3. Enable the APIs you want to access (e.g., Gmail API, Drive API, Calendar API)
|
|
35
|
+
4. Go to **APIs & Services** > **Credentials**
|
|
36
|
+
5. Click **Create Credentials** > **OAuth client ID**
|
|
37
|
+
6. Select **Desktop app** as the application type
|
|
38
|
+
7. Set the redirect URI to `http://127.0.0.1:8080/callback`
|
|
39
|
+
8. Save your **Client ID** and **Client Secret**
|
|
40
|
+
|
|
41
|
+
## Usage
|
|
42
|
+
|
|
43
|
+
### Authenticate with Google
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
papercrane google <scope1> [scope2] [...]
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
**Examples:**
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
# Authenticate for Gmail read-only access
|
|
53
|
+
papercrane google https://www.googleapis.com/auth/gmail.readonly
|
|
54
|
+
|
|
55
|
+
# Authenticate for multiple scopes
|
|
56
|
+
papercrane google https://www.googleapis.com/auth/drive.readonly https://www.googleapis.com/auth/calendar.readonly
|
|
57
|
+
|
|
58
|
+
# Authenticate for Gmail and Drive
|
|
59
|
+
papercrane google https://www.googleapis.com/auth/gmail.readonly https://www.googleapis.com/auth/drive.file
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
The command will:
|
|
63
|
+
1. Prompt you for your Google OAuth Client ID and Client Secret
|
|
64
|
+
2. Generate PKCE credentials for secure authentication
|
|
65
|
+
3. Start a local server on port 8080
|
|
66
|
+
4. Open your browser to complete authentication
|
|
67
|
+
5. Store the credentials in `~/.papercrane/google/`
|
|
68
|
+
|
|
69
|
+
### List Stored Credentials
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
papercrane list
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
This shows all stored credentials including:
|
|
76
|
+
- File name and path
|
|
77
|
+
- Creation and expiration dates
|
|
78
|
+
- Token validity status
|
|
79
|
+
- Granted scopes
|
|
80
|
+
- Refresh token availability
|
|
81
|
+
|
|
82
|
+
### Help
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
papercrane help
|
|
86
|
+
papercrane --help
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
## Credential Storage
|
|
90
|
+
|
|
91
|
+
Credentials are stored as JSON files in:
|
|
92
|
+
```
|
|
93
|
+
~/.papercrane/google/credentials-<hash>.json
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Each credential file contains:
|
|
97
|
+
- `access_token`: The OAuth access token
|
|
98
|
+
- `refresh_token`: The refresh token (if available)
|
|
99
|
+
- `expires_in`: Token lifetime in seconds
|
|
100
|
+
- `expires_at`: Absolute expiration timestamp
|
|
101
|
+
- `scope`: Granted OAuth scopes
|
|
102
|
+
- `token_type`: Token type (usually "Bearer")
|
|
103
|
+
- `created_at`: Creation timestamp
|
|
104
|
+
|
|
105
|
+
## Common OAuth Scopes
|
|
106
|
+
|
|
107
|
+
### Gmail
|
|
108
|
+
- `https://www.googleapis.com/auth/gmail.readonly` - Read-only access
|
|
109
|
+
- `https://www.googleapis.com/auth/gmail.compose` - Compose and send messages
|
|
110
|
+
- `https://www.googleapis.com/auth/gmail.modify` - Read, send, and modify emails
|
|
111
|
+
|
|
112
|
+
### Google Drive
|
|
113
|
+
- `https://www.googleapis.com/auth/drive.readonly` - Read-only access
|
|
114
|
+
- `https://www.googleapis.com/auth/drive.file` - Per-file access
|
|
115
|
+
- `https://www.googleapis.com/auth/drive` - Full access
|
|
116
|
+
|
|
117
|
+
### Google Calendar
|
|
118
|
+
- `https://www.googleapis.com/auth/calendar.readonly` - Read-only access
|
|
119
|
+
- `https://www.googleapis.com/auth/calendar` - Full access
|
|
120
|
+
|
|
121
|
+
See [Google OAuth 2.0 Scopes](https://developers.google.com/identity/protocols/oauth2/scopes) for a complete list.
|
|
122
|
+
|
|
123
|
+
## Security Considerations
|
|
124
|
+
|
|
125
|
+
- **PKCE Flow**: Uses Proof Key for Code Exchange for enhanced security
|
|
126
|
+
- **Local Storage**: Credentials are stored locally on your machine
|
|
127
|
+
- **Refresh Tokens**: Requested by default (`access_type=offline`) for long-term access
|
|
128
|
+
- **Localhost Only**: Callback server binds to `127.0.0.1` (localhost only)
|
|
129
|
+
|
|
130
|
+
## Development
|
|
131
|
+
|
|
132
|
+
### Project Structure
|
|
133
|
+
|
|
134
|
+
```
|
|
135
|
+
papercrane/
|
|
136
|
+
āāā bin/
|
|
137
|
+
ā āāā papercrane.js # CLI entry point
|
|
138
|
+
āāā lib/
|
|
139
|
+
ā āāā callback-server.js # Local OAuth callback server
|
|
140
|
+
ā āāā google-auth.js # Google OAuth flow implementation
|
|
141
|
+
ā āāā list-credentials.js # Credential listing
|
|
142
|
+
ā āāā pkce.js # PKCE generation utilities
|
|
143
|
+
ā āāā storage.js # Credential storage management
|
|
144
|
+
āāā package.json
|
|
145
|
+
āāā README.md
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
### Technologies
|
|
149
|
+
|
|
150
|
+
- **Commander.js**: CLI framework
|
|
151
|
+
- **Axios**: HTTP client for token exchange
|
|
152
|
+
- **Chalk**: Terminal styling
|
|
153
|
+
- **Inquirer**: Interactive prompts
|
|
154
|
+
- **Open**: Cross-platform browser opening
|
|
155
|
+
|
|
156
|
+
## Troubleshooting
|
|
157
|
+
|
|
158
|
+
### Port 8080 already in use
|
|
159
|
+
|
|
160
|
+
If port 8080 is occupied, stop any processes using it or modify the `PORT` constant in `lib/google-auth.js`.
|
|
161
|
+
|
|
162
|
+
### Browser doesn't open automatically
|
|
163
|
+
|
|
164
|
+
Copy the authorization URL from the terminal and paste it into your browser manually.
|
|
165
|
+
|
|
166
|
+
### Invalid client error
|
|
167
|
+
|
|
168
|
+
Ensure your Client ID and Client Secret are correct and that the redirect URI `http://127.0.0.1:8080/callback` is registered in your Google Cloud Console OAuth credentials.
|
|
169
|
+
|
|
170
|
+
## License
|
|
171
|
+
|
|
172
|
+
MIT
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { Command } from 'commander';
|
|
4
|
+
import chalk from 'chalk';
|
|
5
|
+
import readline from 'readline';
|
|
6
|
+
import { setApiKey, clearConfig, isLoggedIn } from '../lib/config.js';
|
|
7
|
+
import { validateApiKey } from '../lib/cloud-client.js';
|
|
8
|
+
import { listFunctions, getFunction, runFunction, formatDescribe, formatDescribeRoot, formatFlat, formatResult, formatUnconnected } from '../lib/function-client.js';
|
|
9
|
+
|
|
10
|
+
const program = new Command();
|
|
11
|
+
|
|
12
|
+
program
|
|
13
|
+
.name('papercrane')
|
|
14
|
+
.description('CLI for discovering and calling endpoints.\n\nRun "papercrane" with no arguments to list connected modules and endpoints.')
|
|
15
|
+
.version('1.0.0');
|
|
16
|
+
|
|
17
|
+
program
|
|
18
|
+
.command('login')
|
|
19
|
+
.description('Login to cloud credential storage with API key')
|
|
20
|
+
.option('--api-key <key>', 'API key for cloud storage')
|
|
21
|
+
.option('--url <url>', 'API base URL (default: https://fly.papercrane.ai)')
|
|
22
|
+
.action(async (options) => {
|
|
23
|
+
try {
|
|
24
|
+
let apiKey = options.apiKey;
|
|
25
|
+
|
|
26
|
+
// If no API key provided via option, prompt for it
|
|
27
|
+
if (!apiKey) {
|
|
28
|
+
const rl = readline.createInterface({
|
|
29
|
+
input: process.stdin,
|
|
30
|
+
output: process.stdout
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
apiKey = await new Promise((resolve) => {
|
|
34
|
+
rl.question(chalk.cyan('Enter your API key: '), (answer) => {
|
|
35
|
+
rl.close();
|
|
36
|
+
resolve(answer.trim());
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
if (!apiKey) {
|
|
42
|
+
console.error(chalk.red('Error: API key is required'));
|
|
43
|
+
process.exit(1);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Save the API key
|
|
47
|
+
await setApiKey(apiKey);
|
|
48
|
+
|
|
49
|
+
// Save custom URL if provided
|
|
50
|
+
if (options.url) {
|
|
51
|
+
const { setApiBaseUrl } = await import('../lib/config.js');
|
|
52
|
+
await setApiBaseUrl(options.url);
|
|
53
|
+
console.log(chalk.dim(`Using API URL: ${options.url}`));
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// Validate it
|
|
57
|
+
console.log(chalk.cyan('\nValidating API key...'));
|
|
58
|
+
const isValid = await validateApiKey();
|
|
59
|
+
|
|
60
|
+
if (isValid) {
|
|
61
|
+
console.log(chalk.green('ā Successfully logged in to cloud credential storage\n'));
|
|
62
|
+
} else {
|
|
63
|
+
console.log(chalk.yellow('ā ļø API key saved, but validation failed.'));
|
|
64
|
+
console.log(chalk.yellow(' The key may be invalid or the service may be unavailable.\n'));
|
|
65
|
+
}
|
|
66
|
+
} catch (error) {
|
|
67
|
+
console.error(chalk.red('Error:'), error.message);
|
|
68
|
+
process.exit(1);
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
program
|
|
73
|
+
.command('logout')
|
|
74
|
+
.description('Logout from cloud credential storage')
|
|
75
|
+
.action(async () => {
|
|
76
|
+
try {
|
|
77
|
+
const loggedIn = await isLoggedIn();
|
|
78
|
+
|
|
79
|
+
if (!loggedIn) {
|
|
80
|
+
console.log(chalk.yellow('Not currently logged in'));
|
|
81
|
+
return;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
await clearConfig();
|
|
85
|
+
console.log(chalk.green('ā Successfully logged out\n'));
|
|
86
|
+
} catch (error) {
|
|
87
|
+
console.error(chalk.red('Error:'), error.message);
|
|
88
|
+
process.exit(1);
|
|
89
|
+
}
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
// ============================================================================
|
|
93
|
+
// FUNCTION COMMANDS
|
|
94
|
+
// ============================================================================
|
|
95
|
+
|
|
96
|
+
program
|
|
97
|
+
.command('describe <path>')
|
|
98
|
+
.description('Describe a module or endpoint. Use --flat to recursively list all endpoint paths')
|
|
99
|
+
.option('-i, --instance <name>', 'Integration instance name', 'Default')
|
|
100
|
+
.option('-f, --flat', 'List all endpoint paths under this module')
|
|
101
|
+
.action(async (path, options) => {
|
|
102
|
+
try {
|
|
103
|
+
const loggedIn = await isLoggedIn();
|
|
104
|
+
if (!loggedIn) {
|
|
105
|
+
console.error(chalk.red('Error: Not logged in. Run: papercrane login'));
|
|
106
|
+
process.exit(1);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
if (options.flat) {
|
|
110
|
+
const data = await listFunctions(path, options.instance, true);
|
|
111
|
+
formatFlat(data);
|
|
112
|
+
} else {
|
|
113
|
+
const data = await getFunction(path, options.instance);
|
|
114
|
+
formatDescribe(data, path);
|
|
115
|
+
}
|
|
116
|
+
} catch (error) {
|
|
117
|
+
console.error(chalk.red('Error:'), error.message);
|
|
118
|
+
process.exit(1);
|
|
119
|
+
}
|
|
120
|
+
});
|
|
121
|
+
|
|
122
|
+
program
|
|
123
|
+
.command('call <path> [params]')
|
|
124
|
+
.description('Call an endpoint and return the result')
|
|
125
|
+
.option('-i, --instance <name>', 'Integration instance name', 'Default')
|
|
126
|
+
.option('-p, --params <json>', 'Parameters as JSON string (alternative to positional)')
|
|
127
|
+
.option('--raw', 'Output raw JSON without formatting')
|
|
128
|
+
.action(async (path, paramsArg, options) => {
|
|
129
|
+
try {
|
|
130
|
+
const loggedIn = await isLoggedIn();
|
|
131
|
+
if (!loggedIn) {
|
|
132
|
+
console.error(chalk.red('Error: Not logged in. Run: papercrane login'));
|
|
133
|
+
process.exit(1);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// Parse params - positional arg takes precedence, fall back to --params
|
|
137
|
+
let params = {};
|
|
138
|
+
const paramsJson = paramsArg || options.params;
|
|
139
|
+
if (paramsJson) {
|
|
140
|
+
try {
|
|
141
|
+
params = JSON.parse(paramsJson);
|
|
142
|
+
} catch (e) {
|
|
143
|
+
console.error(chalk.red('Error: Invalid JSON'));
|
|
144
|
+
console.error(chalk.dim(' Expected format: \'{"key": "value"}\''));
|
|
145
|
+
process.exit(1);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
const data = await runFunction(path, params, options.instance);
|
|
150
|
+
formatResult(data);
|
|
151
|
+
} catch (error) {
|
|
152
|
+
console.error(chalk.red('Error:'), error.message);
|
|
153
|
+
process.exit(1);
|
|
154
|
+
}
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
// ============================================================================
|
|
158
|
+
// CONNECT COMMAND
|
|
159
|
+
// ============================================================================
|
|
160
|
+
|
|
161
|
+
program
|
|
162
|
+
.command('connect [integration]')
|
|
163
|
+
.description('List available integrations, or connect a specific one')
|
|
164
|
+
.action(async (integration) => {
|
|
165
|
+
try {
|
|
166
|
+
if (integration) {
|
|
167
|
+
const { getApiBaseUrl } = await import('../lib/config.js');
|
|
168
|
+
const baseUrl = await getApiBaseUrl();
|
|
169
|
+
|
|
170
|
+
// Construct the connect URL
|
|
171
|
+
const connectUrl = `${baseUrl}/integrations?connect=${integration}`;
|
|
172
|
+
|
|
173
|
+
console.log(chalk.bold(`\nConnect ${integration}:\n`));
|
|
174
|
+
console.log(` ${chalk.cyan(connectUrl)}\n`);
|
|
175
|
+
console.log(chalk.dim('Open this URL in your browser to authenticate.\n'));
|
|
176
|
+
} else {
|
|
177
|
+
const loggedIn = await isLoggedIn();
|
|
178
|
+
if (!loggedIn) {
|
|
179
|
+
console.error(chalk.red('Error: Not logged in. Run: papercrane login'));
|
|
180
|
+
process.exit(1);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
const data = await listFunctions('', 'Default');
|
|
184
|
+
formatUnconnected(data);
|
|
185
|
+
}
|
|
186
|
+
} catch (error) {
|
|
187
|
+
console.error(chalk.red('Error:'), error.message);
|
|
188
|
+
process.exit(1);
|
|
189
|
+
}
|
|
190
|
+
});
|
|
191
|
+
|
|
192
|
+
// Default action: show connected modules when no command is given
|
|
193
|
+
program.action(async () => {
|
|
194
|
+
try {
|
|
195
|
+
const loggedIn = await isLoggedIn();
|
|
196
|
+
if (!loggedIn) {
|
|
197
|
+
console.error(chalk.red('Error: Not logged in. Run: papercrane login'));
|
|
198
|
+
process.exit(1);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
const data = await listFunctions('', 'Default');
|
|
202
|
+
formatDescribeRoot(data);
|
|
203
|
+
} catch (error) {
|
|
204
|
+
console.error(chalk.red('Error:'), error.message);
|
|
205
|
+
process.exit(1);
|
|
206
|
+
}
|
|
207
|
+
});
|
|
208
|
+
|
|
209
|
+
program.parse();
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import http from 'http';
|
|
2
|
+
import { URL } from 'url';
|
|
3
|
+
import chalk from 'chalk';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Starts a local HTTP server to handle OAuth callback
|
|
7
|
+
* @param {number} port - Port to listen on (default: 8080)
|
|
8
|
+
* @returns {Promise<{code: string, server: http.Server, port: number}>}
|
|
9
|
+
*/
|
|
10
|
+
export function startCallbackServer(port = 8080) {
|
|
11
|
+
return new Promise((resolve, reject) => {
|
|
12
|
+
const server = http.createServer((req, res) => {
|
|
13
|
+
const url = new URL(req.url, `http://localhost:${port}`);
|
|
14
|
+
|
|
15
|
+
// Handle the OAuth callback
|
|
16
|
+
if (url.pathname === '/callback') {
|
|
17
|
+
const code = url.searchParams.get('code');
|
|
18
|
+
const error = url.searchParams.get('error');
|
|
19
|
+
|
|
20
|
+
if (error) {
|
|
21
|
+
res.writeHead(400, { 'Content-Type': 'text/html; charset=utf-8' });
|
|
22
|
+
res.end(`
|
|
23
|
+
<html>
|
|
24
|
+
<head><title>Authentication Failed</title></head>
|
|
25
|
+
<body style="font-family: Arial, sans-serif; padding: 50px; text-align: center;">
|
|
26
|
+
<h1 style="color: #e74c3c;">ā Authentication Failed</h1>
|
|
27
|
+
<p>Error: ${error}</p>
|
|
28
|
+
<p>You can close this window.</p>
|
|
29
|
+
</body>
|
|
30
|
+
</html>
|
|
31
|
+
`);
|
|
32
|
+
reject(new Error(`OAuth error: ${error}`));
|
|
33
|
+
return;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
if (code) {
|
|
37
|
+
res.writeHead(200, { 'Content-Type': 'text/html; charset=utf-8' });
|
|
38
|
+
res.end(`
|
|
39
|
+
<html>
|
|
40
|
+
<head><title>Authentication Successful</title></head>
|
|
41
|
+
<body style="font-family: Arial, sans-serif; padding: 50px; text-align: center;">
|
|
42
|
+
<h1 style="color: #27ae60;">ā
Authentication Successful!</h1>
|
|
43
|
+
<p>You have successfully authenticated with Google.</p>
|
|
44
|
+
<p>You can close this window and return to the terminal.</p>
|
|
45
|
+
</body>
|
|
46
|
+
</html>
|
|
47
|
+
`);
|
|
48
|
+
resolve({ code, server, port });
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
res.writeHead(400, { 'Content-Type': 'text/html; charset=utf-8' });
|
|
53
|
+
res.end(`
|
|
54
|
+
<html>
|
|
55
|
+
<head><title>Invalid Request</title></head>
|
|
56
|
+
<body style="font-family: Arial, sans-serif; padding: 50px; text-align: center;">
|
|
57
|
+
<h1>Invalid Request</h1>
|
|
58
|
+
<p>No authorization code received.</p>
|
|
59
|
+
</body>
|
|
60
|
+
</html>
|
|
61
|
+
`);
|
|
62
|
+
} else {
|
|
63
|
+
res.writeHead(404);
|
|
64
|
+
res.end('Not Found');
|
|
65
|
+
}
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
server.on('error', (err) => {
|
|
69
|
+
if (err.code === 'EADDRINUSE') {
|
|
70
|
+
reject(new Error(`Port ${port} is already in use. Please try again.`));
|
|
71
|
+
} else {
|
|
72
|
+
reject(err);
|
|
73
|
+
}
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
server.listen(port, '127.0.0.1', () => {
|
|
77
|
+
console.log(chalk.cyan(`\nš Local server started on http://127.0.0.1:${port}`));
|
|
78
|
+
});
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Stops the callback server
|
|
84
|
+
* @param {http.Server} server
|
|
85
|
+
*/
|
|
86
|
+
export function stopCallbackServer(server) {
|
|
87
|
+
return new Promise((resolve) => {
|
|
88
|
+
server.close(() => {
|
|
89
|
+
resolve();
|
|
90
|
+
});
|
|
91
|
+
});
|
|
92
|
+
}
|