当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript mongodb.ObjectID类代码示例

本文整理汇总了TypeScript中mongodb.ObjectID的典型用法代码示例。如果您正苦于以下问题:TypeScript ObjectID类的具体用法?TypeScript ObjectID怎么用?TypeScript ObjectID使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了ObjectID类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: findOneById

  public findOneById(userId: string, markId: string): Promise<Mark> {
    assert(userId);
    assert(markId);

    const query = {
      "_id": ObjectID.createFromHexString(markId),
      "user._id": ObjectID.createFromHexString(userId)
    };

    return this.findOne(query);
  }
开发者ID:douglascvas,项目名称:biblicando-backend,代码行数:11,代码来源:MarkDao.ts

示例2: it

 it('equal players with entity ids are equal', function () {
     const batman = {
         name: 'Batman',
         _id: ObjectID.createFromHexString('000000079bb31fb01ee7834c'),
         tribe: 'what'
     };
     const anotherBatman = {
         name: 'Batman',
         _id: ObjectID.createFromHexString('000000079bb31fb01ee7834c'),
         tribe: 'what'
     };
     expect(Comparators.areEqualPlayers(batman, anotherBatman)).toBe(true);
 })
开发者ID:robertfmurdock,项目名称:Coupling,代码行数:13,代码来源:Comparators-spec.ts

示例3: Set

      const addIdsToQueryMap = (access: boolean) => (id: string | ObjectID) => {
        const accessString = access ? 'positive' : 'negative';
        const altAccessString = access ? 'negative' : 'positive';
        const resourceUid = Tyr.byName[linkedCollectionName].idToUid(id);

        if (alreadySet.has(resourceUid)) {
          return;
        } else {
          alreadySet.add(resourceUid);
        }

        const accessSet =
          queryMaps[accessString].get(linkedCollectionName) || new Set();
        if (!queryMaps[accessString].has(linkedCollectionName)) {
          queryMaps[accessString].set(linkedCollectionName, accessSet);
        }

        // if the id was set previously, by a lower level link,
        // dont override the lower level
        const map = queryMaps[altAccessString].get(linkedCollectionName);

        if (!map || !map.has(id.toString())) {
          accessSet.add(id as string);
        }
      };
开发者ID:tyranid-org,项目名称:tyranid,代码行数:25,代码来源:query.ts

示例4: function

export default async function(ctx: Koa.Context) {
	// Validate id
	if (!mongodb.ObjectID.isValid(ctx.params.id)) {
		ctx.throw(400, 'incorrect id');
		return;
	}

	const fileId = new mongodb.ObjectID(ctx.params.id);

	// Fetch drive file
	const file = await DriveFile.findOne({ _id: fileId });

	if (file == null) {
		ctx.status = 404;
		await send(ctx, '/dummy.png', { root: assets });
		return;
	}

	if (file.metadata.deletedAt) {
		ctx.status = 410;
		await send(ctx, '/tombstone.png', { root: assets });
		return;
	}

	if (file.metadata.withoutChunks) {
		ctx.status = 204;
		return;
	}

	const sendRaw = async () => {
		const bucket = await getDriveFileBucket();
		const readable = bucket.openDownloadStream(fileId);
		readable.on('error', commonReadableHandlerGenerator(ctx));
		ctx.set('Content-Type', file.contentType);
		ctx.body = readable;
	};

	if ('thumbnail' in ctx.query) {
		const thumb = await DriveFileThumbnail.findOne({
			'metadata.originalId': fileId
		});

		if (thumb != null) {
			ctx.set('Content-Type', 'image/jpeg');
			const bucket = await getDriveFileThumbnailBucket();
			ctx.body = bucket.openDownloadStream(thumb._id);
		} else {
			await sendRaw();
		}
	} else {
		if ('download' in ctx.query) {
			ctx.set('Content-Disposition', 'attachment');
		}

		await sendRaw();
	}
}
开发者ID:ha-dai,项目名称:Misskey,代码行数:57,代码来源:send-drive-file.ts

示例5: async

	connection.on('message', async (data) => {
		const msg = JSON.parse(data.utf8Data);

		switch (msg.type) {
			case 'read':
					if (!msg.id) {
						return;
					}

					const id = new mongodb.ObjectID(msg.id);

					// Fetch message
					// SELECT _id, user_id, is_read
					const message = await Message.findOne({
						_id: id,
						recipient_id: user._id
					}, {
						fields: {
							_id: true,
							user_id: true,
							is_read: true
						}
					});

					if (message == null) {
						return;
					}

					if (message.is_read) {
						return;
					}

					// Update documents
					await Message.update({
						_id: id
					}, {
						$set: { is_read: true }
					});

					// Publish event
					publishMessagingStream(message.user_id, user._id, 'read', id.toString());
				break;
		}
	});
开发者ID:syuilo,项目名称:misskey-core,代码行数:44,代码来源:messaging.ts

示例6: findByVerse

  public findByVerse(userId: string, verseId: ObjectID, options: any): Promise<Mark[]> {
    assert(userId);
    assert(verseId);

    const query = {
      "user._id": ObjectID.createFromHexString(userId),
      "verse._id": verseId
    };

    return this.find(query, options);
  }
开发者ID:douglascvas,项目名称:biblicando-backend,代码行数:11,代码来源:MarkDao.ts

示例7: it

    it("should correctly diff ObjectIDs", function () {
        let oldID = new MongoDB.ObjectID();
        let newID = MongoDB.ObjectID.createFromHexString(oldID.toHexString());

        let oldObject = { _id: oldID };
        let newObject = { _id: newID };
        let expectedDiff = {

        };

        chai.expect(Omnom.diff(oldObject, newObject)).to.exist.and.be.eql(expectedDiff);

        newID = new MongoDB.ObjectID();

        oldObject = { _id: oldID };
        newObject = { _id: newID };
        expectedDiff = {
            $set: { _id: newID }
        };

        chai.expect(Omnom.diff(oldObject, newObject)).to.exist.and.be.eql(expectedDiff);
    });
开发者ID:apapacy,项目名称:Iridium,代码行数:22,代码来源:Omnom.ts

示例8: findByTag

  public findByTag(userId: string, tags: string[]): Promise<Mark[]> {
    assert(userId);
    assert(tags);

    const query = {
      "user._id": ObjectID.createFromHexString(userId),
      "tag": {
        $in: tags
      }
    };

    return this.find(query);
  }
开发者ID:douglascvas,项目名称:biblicando-backend,代码行数:13,代码来源:MarkDao.ts

示例9: ObjectID

			return this.dbExecute<TEntity>((collection: Collection, subject: Subject<TEntity>) => {
				const id: ObjectID = new ObjectID(entity._id);
				delete entity._id;
				entity.lastUpdated = new Date();
				collection.replaceOne({ _id: id }, entity, (err: WriteError, result: UpdateWriteOpResult) => {
					if (err) {
						throw new Error(err.errmsg);
					}

					console.log(result.toString());
					entity._id = id.toHexString();
					subject.next(entity);
					subject.complete();
				});
			});
开发者ID:nickmorton,项目名称:yes-admin,代码行数:15,代码来源:repository-base.ts

示例10: Error

				collection.replaceOne({ _id: id }, entity, (err: WriteError, result: UpdateWriteOpResult) => {
					if (err) {
						throw new Error(err.errmsg);
					}

					console.log(result.toString());
					entity._id = id.toHexString();
					subject.next(entity);
					subject.complete();
				});
开发者ID:nickmorton,项目名称:yes-admin,代码行数:10,代码来源:repository-base.ts


注:本文中的mongodb.ObjectID类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。