@max1874/feishu 0.2.22 → 0.2.23
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/package.json +1 -1
- package/src/docx.ts +36 -5
package/package.json
CHANGED
package/src/docx.ts
CHANGED
|
@@ -508,6 +508,20 @@ async function grantFullAccess(client: Lark.Client, docToken: string, memberId:
|
|
|
508
508
|
return res.data;
|
|
509
509
|
}
|
|
510
510
|
|
|
511
|
+
/** Transfer document ownership to a user (open_id) */
|
|
512
|
+
async function transferOwner(client: Lark.Client, docToken: string, newOwnerOpenId: string) {
|
|
513
|
+
const res = await client.drive.permissionMember.transferOwner({
|
|
514
|
+
path: { token: docToken },
|
|
515
|
+
params: { type: "docx", need_notification: false, remove_old_owner: false },
|
|
516
|
+
data: {
|
|
517
|
+
member_type: "openid",
|
|
518
|
+
member_id: newOwnerOpenId,
|
|
519
|
+
},
|
|
520
|
+
});
|
|
521
|
+
if (res.code !== 0) throw new Error(res.msg);
|
|
522
|
+
return res.data;
|
|
523
|
+
}
|
|
524
|
+
|
|
511
525
|
async function createDoc(
|
|
512
526
|
client: Lark.Client,
|
|
513
527
|
title: string,
|
|
@@ -526,16 +540,32 @@ async function createDoc(
|
|
|
526
540
|
await setDocPermissionTenantEditable(client, docId);
|
|
527
541
|
}
|
|
528
542
|
|
|
529
|
-
// Auto-
|
|
543
|
+
// Auto-transfer ownership to the sender, and grant group access if in group chat
|
|
544
|
+
let ownerTransferredTo: string | undefined;
|
|
530
545
|
let grantedTo: string | undefined;
|
|
531
546
|
const convCtx = getConversationContext();
|
|
532
547
|
if (docId && convCtx) {
|
|
533
|
-
|
|
548
|
+
// Transfer ownership to the user who triggered this request
|
|
534
549
|
try {
|
|
535
|
-
await
|
|
536
|
-
|
|
550
|
+
await transferOwner(client, docId, convCtx.senderOpenId);
|
|
551
|
+
ownerTransferredTo = convCtx.senderOpenId;
|
|
537
552
|
} catch {
|
|
538
|
-
//
|
|
553
|
+
// Fallback: grant full_access if transfer fails
|
|
554
|
+
try {
|
|
555
|
+
await grantFullAccess(client, docId, convCtx.senderOpenId);
|
|
556
|
+
grantedTo = convCtx.senderOpenId;
|
|
557
|
+
} catch {
|
|
558
|
+
// Non-fatal: doc is created, permission grant failed
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
// In group chats, also grant full_access to the chat group
|
|
563
|
+
if (convCtx.chatType === "group") {
|
|
564
|
+
try {
|
|
565
|
+
await grantFullAccess(client, docId, convCtx.chatId);
|
|
566
|
+
} catch {
|
|
567
|
+
// Non-fatal
|
|
568
|
+
}
|
|
539
569
|
}
|
|
540
570
|
}
|
|
541
571
|
|
|
@@ -544,6 +574,7 @@ async function createDoc(
|
|
|
544
574
|
title: doc?.title,
|
|
545
575
|
url: `https://feishu.cn/docx/${docId}`,
|
|
546
576
|
permission: permission ?? "private",
|
|
577
|
+
...(ownerTransferredTo && { owner_transferred_to: ownerTransferredTo }),
|
|
547
578
|
...(grantedTo && { granted_full_access_to: grantedTo }),
|
|
548
579
|
};
|
|
549
580
|
}
|