@xuda.io/account_module 1.2.1387 → 1.2.1389

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.
Files changed (2) hide show
  1. package/index.mjs +20 -4
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -2068,15 +2068,31 @@ export const add_contact = async function (req, job_id, headers) {
2068
2068
  const set_account_profile_picture = async function (uid, contact_uid) {
2069
2069
  let { code: account_code, data: account_obj } = await db_module.get_couch_doc('xuda_accounts', contact_uid);
2070
2070
  let account_info = account_obj.account_info;
2071
- // account_info_ret = await get_account_name({ uid_query: contact_uid });
2071
+
2072
2072
  if (account_code < 0) {
2073
2073
  throw new Error(`account ${contact_uid} not found`);
2074
2074
  }
2075
2075
  if (!account_info.profile_picture) {
2076
- account_info.profile_picture_obj = await ai_module.get_profile_picture(uid, account_type, name, { email, context, metadata, account_info }, account_profile_info, job_id, headers);
2076
+ const file_ret = await ai_module.get_profile_picture(uid, account_type, name, { email, context, metadata, account_info }, account_profile_info, job_id, headers);
2077
+
2078
+ let { code: account_code, data: account_obj } = await db_module.get_couch_doc('xuda_accounts', contact_uid);
2079
+ let account_info = account_obj.account_info;
2080
+
2081
+ account_info.profile_picture_obj = file_ret;
2082
+ account_info.profile_picture = account_info.profile_picture_obj.file_url;
2083
+ account_info.profile_picture_source = '';
2084
+ const account_save_ret = await db_module.save_couch_doc('xuda_accounts', account_obj);
2085
+ }
2086
+
2087
+ if (!account_info.profile_avatar) {
2088
+ const file_ret = await ai_module.get_profile_picture(uid, account_type, name, { email, context, metadata, account_info }, account_profile_info, job_id, headers);
2089
+
2090
+ let { code: account_code, data: account_obj } = await db_module.get_couch_doc('xuda_accounts', contact_uid);
2091
+ let account_info = account_obj.account_info;
2092
+
2093
+ account_info.profile_picture_obj = file_ret;
2077
2094
  account_info.profile_picture = account_info.profile_picture_obj.file_url;
2078
- // account_info.profile_picture_obj = profile_picture_obj;
2079
- // account_info.profile_picture = profile_picture;
2095
+
2080
2096
  const account_save_ret = await db_module.save_couch_doc('xuda_accounts', account_obj);
2081
2097
  }
2082
2098
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/account_module",
3
- "version": "1.2.1387",
3
+ "version": "1.2.1389",
4
4
  "description": "Xuda Account Server Module",
5
5
  "main": "index.mjs",
6
6
  "dependencies": {