mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	✌️
This commit is contained in:
		
							parent
							
								
									0e2bb5bddc
								
							
						
					
					
						commit
						772bc243af
					
				
					 1 changed files with 13 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -1,3 +1,4 @@
 | 
			
		|||
import { MongoError } from 'mongodb';
 | 
			
		||||
import Note, { pack, INote } from '../../models/note';
 | 
			
		||||
import User, { isLocalUser, IUser, isRemoteUser } from '../../models/user';
 | 
			
		||||
import stream, { publishLocalTimelineStream, publishGlobalTimelineStream } from '../../publishers/stream';
 | 
			
		||||
| 
						 | 
				
			
			@ -85,7 +86,18 @@ export default async (user: IUser, data: {
 | 
			
		|||
	if (data.uri != null) insert.uri = data.uri;
 | 
			
		||||
 | 
			
		||||
	// 投稿を作成
 | 
			
		||||
	const note = await Note.insert(insert);
 | 
			
		||||
	let note: INote;
 | 
			
		||||
	try {
 | 
			
		||||
		note = await Note.insert(insert);
 | 
			
		||||
	} catch (e) {
 | 
			
		||||
		// duplicate key error
 | 
			
		||||
		if (e instanceof MongoError && e.code === 11000) {
 | 
			
		||||
			return res(null);
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		console.error(e);
 | 
			
		||||
		return rej('something happened');
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	res(note);
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue