問題がpopulate
あり、これも実行したい人のために:
- シンプルなテキストとクイック返信(バブル)でチャット
- チャットのための4つのデータベースのコレクション:
clients
、users
、rooms
、messasges
。
- ボット、ユーザー、クライアントの3種類の送信者に同じメッセージDB構造
refPath
または動的参照
populate
とpath
とmodel
オプション
- 使用
findOneAndReplace
/ replaceOne
あり$exists
- 取得したドキュメントが存在しない場合は、新しいドキュメントを作成します
環境
ゴール
- 新しいシンプルなテキストメッセージをデータベースに保存し、ユーザーまたはクライアントデータ(2つの異なるモデル)を入力します。
- 新しいquickRepliesメッセージをデータベースに保存し、ユーザーまたはクライアントデータを入力します。
- 各メッセージの送信者タイプを保存します:
clients
、users
&bot
。
- 送信者がいるメッセージ
clients
またはusers
そのMongooseモデルを含むメッセージのみを入力します。_senderタイプのクライアントモデルはclients
、ユーザーはusers
です。
メッセージスキーマ:
const messageSchema = new Schema({
room: {
type: Schema.Types.ObjectId,
ref: 'rooms',
required: [true, `Room's id`]
},
sender: {
_id: { type: Schema.Types.Mixed },
type: {
type: String,
enum: ['clients', 'users', 'bot'],
required: [true, 'Only 3 options: clients, users or bot.']
}
},
timetoken: {
type: String,
required: [true, 'It has to be a Nanosecond-precision UTC string']
},
data: {
lang: String,
// Format samples on https://docs.chatfuel.com/api/json-api/json-api
type: {
text: String,
quickReplies: [
{
text: String,
// Blocks' ids.
goToBlocks: [String]
}
]
}
}
mongoose.model('messages', messageSchema);
解決
サーバーサイドAPIリクエスト
私のコード
chatUtils.js
保存するメッセージのタイプを取得するユーティリティ関数(ファイル):
/**
* We filter what type of message is.
*
* @param {Object} message
* @returns {string} The type of message.
*/
const getMessageType = message => {
const { type } = message.data;
const text = 'text',
quickReplies = 'quickReplies';
if (type.hasOwnProperty(text)) return text;
else if (type.hasOwnProperty(quickReplies)) return quickReplies;
};
/**
* Get the Mongoose's Model of the message's sender. We use
* the sender type to find the Model.
*
* @param {Object} message - The message contains the sender type.
*/
const getSenderModel = message => {
switch (message.sender.type) {
case 'clients':
return 'clients';
case 'users':
return 'users';
default:
return null;
}
};
module.exports = {
getMessageType,
getSenderModel
};
サーバー側(Nodejsを使用)でメッセージの保存要求を取得します。
app.post('/api/rooms/:roomId/messages/new', async (req, res) => {
const { roomId } = req.params;
const { sender, timetoken, data } = req.body;
const { uuid, state } = sender;
const { type } = state;
const { lang } = data;
// For more info about message structure, look up Message Schema.
let message = {
room: new ObjectId(roomId),
sender: {
_id: type === 'bot' ? null : new ObjectId(uuid),
type
},
timetoken,
data: {
lang,
type: {}
}
};
// ==========================================
// CONVERT THE MESSAGE
// ==========================================
// Convert the request to be able to save on the database.
switch (getMessageType(req.body)) {
case 'text':
message.data.type.text = data.type.text;
break;
case 'quickReplies':
// Save every quick reply from quickReplies[].
message.data.type.quickReplies = _.map(
data.type.quickReplies,
quickReply => {
const { text, goToBlocks } = quickReply;
return {
text,
goToBlocks
};
}
);
break;
default:
break;
}
// ==========================================
// SAVE THE MESSAGE
// ==========================================
/**
* We save the message on 2 ways:
* - we replace the message type `quickReplies` (if it already exists on database) with the new one.
* - else, we save the new message.
*/
try {
const options = {
// If the quickRepy message is found, we replace the whole document.
overwrite: true,
// If the quickRepy message isn't found, we create it.
upsert: true,
// Update validators validate the update operation against the model's schema.
runValidators: true,
// Return the document already updated.
new: true
};
Message.findOneAndUpdate(
{ room: roomId, 'data.type.quickReplies': { $exists: true } },
message,
options,
async (err, newMessage) => {
if (err) {
throw Error(err);
}
// Populate the new message already saved on the database.
Message.populate(
newMessage,
{
path: 'sender._id',
model: getSenderModel(newMessage)
},
(err, populatedMessage) => {
if (err) {
throw Error(err);
}
res.send(populatedMessage);
}
);
}
);
} catch (err) {
logger.error(
`#API Error on saving a new message on the database of roomId=${roomId}. ${err}`,
{ message: req.body }
);
// Bad Request
res.status(400).send(false);
}
});
ヒント:
データベースの場合:
- すべてのメッセージはドキュメントそのものです。
- ではなく
refPath
、で使用されているユーティリティgetSenderModel
を使用しpopulate()
ます。これはボットのためです。sender.type
ことができます。users
彼のデータベースと、clients
彼のデータベースとし、bot
データベースなし。refPath
ない場合は、Mongoooseはエラーをスローし、真のモデルの参照を必要とします。
sender._id
ObjectId
ユーザーとクライアントのタイプ、またはnull
ボットのタイプを指定できます。
APIリクエストロジックの場合:
quickReply
メッセージを置き換えます(メッセージDBには、quickReplyが1つだけ必要ですが、単純なテキストメッセージはいくつでも必要です)。またはのfindOneAndUpdate
代わりに使用します。replaceOne
findOneAndReplace
- クエリ操作(the
findOneAndUpdate
)とそれぞれのをpopulate
使った操作を実行しますcallback
。これは、使用している場合は、あなたがわからない場合に重要であるasync/await
、then()
、exec()
またはcallback(err, document)
。詳細については、Populate Docをご覧ください。
overwrite
オプションと$set
クエリ演算子なしのクイック返信メッセージを置き換えます。
- クイック返信が見つからない場合は、新しい返信を作成します。
upsert
オプションでこれをMongooseに伝える必要があります。
- 置き換えられたメッセージまたは新しく保存されたメッセージに対して、1回のみ入力します。
- 私たちは、私たちがして保存したメッセージが何であれ、コールバックに戻る
findOneAndUpdate
とためpopulate()
。
- では
populate
、を使用してカスタム動的モデル参照を作成しますgetSenderModel
。sender.type
forにbot
はMongooseモデルがないため、Mongoose動的参照を使用できます。私たちは、optins を使用したPopulation Across Databaseを使用しmodel
ていpath
ます。
私はあちこちで小さな問題を解決するのに何時間も費やしてきました。これが誰かを助けることを願っています!😃