 8d06a6475e
			
		
	
	8d06a6475e
	
	
	
		
			
			* chore: 著作権とライセンスについての情報を各ファイルに追加する * chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * chore: Add SPDX-License-Identifier [skip ci] * add missing SPDX-License-Identifier * remove unused file --------- Co-authored-by: Shun Sakai <sorairolake@protonmail.ch> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com>
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: syuilo and other misskey contributors
 | |
|  * SPDX-License-Identifier: AGPL-3.0-only
 | |
|  */
 | |
| 
 | |
| import RE2 from 're2';
 | |
| 
 | |
| export class convertHardMutes1644010796173 {
 | |
|     name = 'convertHardMutes1644010796173'
 | |
| 
 | |
|     async up(queryRunner) {
 | |
|         let entries = await queryRunner.query(`SELECT "userId", "mutedWords" FROM "user_profile" WHERE "userHost" IS NULL`);
 | |
|         for(let i = 0; i < entries.length; i++) {
 | |
|             let words = entries[i].mutedWords
 | |
|                 .map(line => {
 | |
| 										if (typeof line === 'string') return [];
 | |
|                     const regexp = line.join(" ").match(/^\/(.+)\/(.*)$/);
 | |
|                     if (regexp) {
 | |
|                         // convert regexp's
 | |
|                         try {
 | |
|                             new RE2(regexp[1], regexp[2]);
 | |
|                             return `/${regexp[1]}/${regexp[2]}`;
 | |
|                         } catch (err) {
 | |
|                             // invalid regex, ignore it
 | |
|                             return [];
 | |
|                         }
 | |
|                     } else {
 | |
|                         // remove empty segments
 | |
|                         return line.filter(x => x !== '');
 | |
|                     }
 | |
|                 })
 | |
|                 // remove empty lines
 | |
|                 .filter(x => !(Array.isArray(x) && x.length === 0));
 | |
| 
 | |
|             await queryRunner.connection.createQueryBuilder()
 | |
|                 .update('user_profile')
 | |
|                 .set({
 | |
|                     mutedWords: words
 | |
|                 })
 | |
|                 .where('userId = :id', { id: entries[i].userId })
 | |
|                 .execute();
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     async down(queryRunner) {
 | |
|         let entries = await queryRunner.query(`SELECT "userId", "mutedWords" FROM "user_profile"`);
 | |
|         for(let i = 0; i < entries.length; i++) {
 | |
|             let words = entries[i].mutedWords
 | |
|                 .map(line => {
 | |
|                     if (Array.isArray(line)) {
 | |
|                         return line;
 | |
|                     } else {
 | |
|                     	// do not split regex at spaces again
 | |
|                         return [line];
 | |
|                     }
 | |
|                 })
 | |
|                 // remove empty lines
 | |
|                 .filter(x => !(Array.isArray(x) && x.length === 0));
 | |
| 
 | |
|             await queryRunner.connection.createQueryBuilder()
 | |
|                 .update('user_profile')
 | |
|                 .set({
 | |
|                     mutedWords: words
 | |
|                 })
 | |
|                 .where('userId = :id', { id: entries[i].userId })
 | |
|                 .execute();
 | |
|         }
 | |
|     }
 | |
| }
 |