62 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
| /*
 | |
|  * Copyright 2025 coze-dev Authors
 | |
|  *
 | |
|  * Licensed under the Apache License, Version 2.0 (the "License");
 | |
|  * you may not use this file except in compliance with the License.
 | |
|  * You may obtain a copy of the License at
 | |
|  *
 | |
|  *     http://www.apache.org/licenses/LICENSE-2.0
 | |
|  *
 | |
|  * Unless required by applicable law or agreed to in writing, software
 | |
|  * distributed under the License is distributed on an "AS IS" BASIS,
 | |
|  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
|  * See the License for the specific language governing permissions and
 | |
|  * limitations under the License.
 | |
|  */
 | |
| 
 | |
| import type {
 | |
|   IPlugin,
 | |
|   IHooks,
 | |
|   IPromptsHookParams,
 | |
| } from 'rush-init-project-plugin';
 | |
| // FIXME:
 | |
| // According to https://github.com/bytemate/rush-plugins/blob/main/rush-plugins/rush-init-project-plugin/docs/init_project_configuration.md
 | |
| // The guidelines of this article cannot be correctly resolved to the corresponding module, and a solution has not been found for the time being, so the relative path reference is used here first
 | |
| // Future needs to be adjusted to normal node_modules citation
 | |
| import { createLog } from '../../autoinstallers/plugins/node_modules/rush-init-project-plugin';
 | |
| import { exec } from './utils';
 | |
| 
 | |
| export default class SetDefaultAuthorPlugin implements IPlugin {
 | |
|   private readonly logger = createLog({
 | |
|     prefix: SetDefaultAuthorPlugin.name,
 | |
|   });
 | |
| 
 | |
|   apply(hooks: IHooks): void {
 | |
|     hooks.prompts.tap(
 | |
|       SetDefaultAuthorPlugin.name,
 | |
|       async (prompts: IPromptsHookParams) => {
 | |
|         const prompAuthorEmail = prompts.promptQueue.find(
 | |
|           r => r.name === 'authorName',
 | |
|         );
 | |
|         if (prompAuthorEmail) {
 | |
|           const userEmail = String(
 | |
|             await exec(this.logger, 'git', ['config', '--get', 'user.email']),
 | |
|           );
 | |
|           Object.assign(prompAuthorEmail, {
 | |
|             default() {
 | |
|               return userEmail;
 | |
|             },
 | |
|             validate(author: string) {
 | |
|               return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(author);
 | |
|             },
 | |
|           });
 | |
| 
 | |
|           hooks.answers.tap('authorPrefix', answers => {
 | |
|             answers.authorPrefix = userEmail.split('@')?.[0] ?? '';
 | |
|           });
 | |
|         }
 | |
|       },
 | |
|     );
 | |
|   }
 | |
| }
 |