Update activitypub.extend.php
This commit is contained in:
parent
637bf4d95b
commit
9f4cf82142
|
@ -91,15 +91,43 @@ function activitypub_create_keypair() {
|
|||
}
|
||||
|
||||
function activitypub_get_stored_keypair($mb) {
|
||||
global $g5;
|
||||
|
||||
$private_key = '';
|
||||
$public_key = '';
|
||||
|
||||
|
||||
// 인증서 정보 불러오기
|
||||
if ($mb != null && !empty($mb['mb_id'])) {
|
||||
$certificate_data = activitypub_parse_stored_data($mb[ACTIVITYPUB_CERTIFICATE_DATAFIELD]); // 인증서 정보 불러오기
|
||||
$certificate_data = activitypub_parse_stored_data($mb[ACTIVITYPUB_CERTIFICATE_DATAFIELD]);
|
||||
$private_key = activitypub_get_memo($certificate_data['PrivateKeyId']); // 개인키(Private Key)
|
||||
$public_key = activitypub_get_memo($certificate_data['PublicKeyId']); // 공개키(Public Key)
|
||||
}
|
||||
|
||||
// 인증서 정보가 없으면 생성
|
||||
if (!$mb[ACTIVITYPUB_CERTIFICATE_DATAFIELD] || empty($private_key) || empty($public_key)) {
|
||||
$keypair = activitypub_create_keypair(); // 인증서(공개키, 개인키) 생성
|
||||
$private_key_id = activitypub_add_memo(ACTIVITYPUB_G5_USERNAME, $mb['mb_id'], $keypair[0]); // 개인키(Private Key)
|
||||
$public_key_id = activitypub_add_memo(ACTIVITYPUB_G5_USERNAME, $mb['mb_id'], $keypair[1]); // 공개키(Public Key)
|
||||
|
||||
// 회원 정보에 등록
|
||||
if ($private_key_id > 0 && $public_key_id > 0) {
|
||||
$stored_certificate_data = activitypub_build_stored_data(array(
|
||||
"PrivateKeyId" => $private_key_id,
|
||||
"PublicKeyId" => $public_key_id
|
||||
));
|
||||
$sql = " update {$g5['member_table']} set " . ACTIVITYPUB_CERTIFICATE_DATAFIELD . " = '{$stored_certificate_data}' where mb_id = '{$mb['mb_id']}' ";
|
||||
sql_query($sql);
|
||||
}
|
||||
|
||||
// 인증서 정보 불러오기
|
||||
$certificate_data = activitypub_parse_stored_data($mb[ACTIVITYPUB_CERTIFICATE_DATAFIELD]);
|
||||
$private_key = activitypub_get_memo($certificate_data['PrivateKeyId']); // 개인키(Private Key)
|
||||
$public_key = activitypub_get_memo($certificate_data['PublicKeyId']); // 공개키(Public Key)
|
||||
|
||||
// 회원에게 알림
|
||||
activitypub_add_memo(ACTIVITYPUB_G5_USERNAME, $mb['mb_id'], "외부 서버와 통신하기 위한 인증서가 발급되었습니다. 발급된 인증서는 두가지(개인키, 공개키)입니다. 인증서를 삭제하거나 타인과 공유하지 마세요. A certificate has been issued to communicate with an external server. There are two certificates issued (private key, public key). Do not delete the certificate or share it with others.");
|
||||
}
|
||||
|
||||
return array($private_key, $public_key);
|
||||
}
|
||||
|
||||
|
@ -971,31 +999,12 @@ class _GNUBOARD_ActivityPub {
|
|||
}
|
||||
|
||||
public static function user() {
|
||||
global $g5;
|
||||
|
||||
$mb = get_member($_GET['mb_id']);
|
||||
|
||||
if (!$mb['mb_id']) {
|
||||
return activitypub_json_encode(array("message" => "Could not find the user"));
|
||||
}
|
||||
|
||||
// 인증서 정보가 없으면 생성
|
||||
if (!$mb[ACTIVITYPUB_CERTIFICATE_DATAFIELD]) {
|
||||
$keypair = activitypub_create_keypair(); // 인증서(공개키, 개인키) 생성
|
||||
$private_key_id = activitypub_add_memo(ACTIVITYPUB_G5_USERNAME, $mb['mb_id'], $keypair[0]); // 개인키(Private Key)
|
||||
$public_key_id = activitypub_add_memo(ACTIVITYPUB_G5_USERNAME, $mb['mb_id'], $keypair[1]); // 공개키(Public Key)
|
||||
|
||||
// 회원 정보에 등록
|
||||
if ($private_key_id > 0 && $public_key_id > 0) {
|
||||
$stored_certificate_data = activitypub_build_stored_data(array(
|
||||
"PrivateKeyId" => $private_key_id,
|
||||
"PublicKeyId" => $public_key_id
|
||||
));
|
||||
$sql = " update {$g5['member_table']} set " . ACTIVITYPUB_CERTIFICATE_DATAFIELD . " = '{$stored_certificate_data}' where mb_id = '{$mb['mb_id']}' ";
|
||||
sql_query($sql);
|
||||
}
|
||||
}
|
||||
|
||||
// 인증서 정보 불러오기
|
||||
list($private_key, $public_key) = activitypub_get_stored_keypair($mb);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user