| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Minio Cloud Storage, (C) 2015 Minio, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 	"math" | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 	"runtime" | 
					
						
							|  |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-13 10:35:28 +08:00
										 |  |  | 	"github.com/cheggaaa/pb" | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 	"github.com/fatih/color" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // colorizeUpdateMessage - inspired from Yeoman project npm package https://github.com/yeoman/update-notifier
 | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | func colorizeUpdateMessage(updateString string, newerThan time.Duration) string { | 
					
						
							| 
									
										
										
										
											2016-03-25 08:20:49 +08:00
										 |  |  | 	// Initialize coloring.
 | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 	cyan := color.New(color.FgCyan, color.Bold).SprintFunc() | 
					
						
							|  |  |  | 	yellow := color.New(color.FgYellow, color.Bold).SprintfFunc() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 08:20:49 +08:00
										 |  |  | 	// Calculate length without color coding, due to ANSI color
 | 
					
						
							|  |  |  | 	// characters padded to actual string the final length is wrong
 | 
					
						
							|  |  |  | 	// than the original string length.
 | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 	hTime := timeDurationToHumanizedDuration(newerThan) | 
					
						
							|  |  |  | 	line1Str := fmt.Sprintf(" Minio is %s old ", hTime.StringShort()) | 
					
						
							|  |  |  | 	line2Str := fmt.Sprintf(" Update: %s ", updateString) | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 	line1Length := len(line1Str) | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 	line2Length := len(line2Str) | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 08:20:49 +08:00
										 |  |  | 	// Populate lines with color coding.
 | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 	line1InColor := fmt.Sprintf(" Minio is %s old ", yellow(hTime.StringShort())) | 
					
						
							|  |  |  | 	line2InColor := fmt.Sprintf(" Update: %s ", cyan(updateString)) | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 	// calculate the rectangular box size.
 | 
					
						
							|  |  |  | 	maxContentWidth := int(math.Max(float64(line1Length), float64(line2Length))) | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 	line1Rest := maxContentWidth - line1Length | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 	line2Rest := maxContentWidth - line2Length | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-13 10:35:28 +08:00
										 |  |  | 	// termWidth is set to a default one to use when we are
 | 
					
						
							|  |  |  | 	// not able to calculate terminal width via OS syscalls
 | 
					
						
							|  |  |  | 	termWidth := 25 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if width, err := pb.GetTerminalWidth(); err == nil { | 
					
						
							|  |  |  | 		termWidth = width | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var message string | 
					
						
							|  |  |  | 	switch { | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 	case len(line2Str) > termWidth: | 
					
						
							|  |  |  | 		message = "\n" + line1InColor + "\n" + line2InColor + "\n" | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 		// on windows terminal turn off unicode characters.
 | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 		var top, bottom, sideBar string | 
					
						
							|  |  |  | 		if runtime.GOOS == "windows" { | 
					
						
							|  |  |  | 			top = yellow("*" + strings.Repeat("*", maxContentWidth) + "*") | 
					
						
							|  |  |  | 			bottom = yellow("*" + strings.Repeat("*", maxContentWidth) + "*") | 
					
						
							|  |  |  | 			sideBar = yellow("|") | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 			// color the rectangular box, use unicode characters here.
 | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 			top = yellow("┏" + strings.Repeat("━", maxContentWidth) + "┓") | 
					
						
							|  |  |  | 			bottom = yellow("┗" + strings.Repeat("━", maxContentWidth) + "┛") | 
					
						
							|  |  |  | 			sideBar = yellow("┃") | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 		// fill spaces to the rest of the area.
 | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 		spacePaddingLine1 := strings.Repeat(" ", line1Rest) | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 		spacePaddingLine2 := strings.Repeat(" ", line2Rest) | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 		// construct the final message.
 | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 		message = "\n" + top + "\n" + | 
					
						
							|  |  |  | 			sideBar + line1InColor + spacePaddingLine1 + sideBar + "\n" + | 
					
						
							| 
									
										
										
										
											2016-11-20 15:20:13 +08:00
										 |  |  | 			sideBar + line2InColor + spacePaddingLine2 + sideBar + "\n" + | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | 			bottom + "\n" | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-03-25 08:20:49 +08:00
										 |  |  | 	// Return the final message.
 | 
					
						
							| 
									
										
										
										
											2016-06-13 10:35:28 +08:00
										 |  |  | 	return message | 
					
						
							| 
									
										
										
										
											2015-10-18 06:03:46 +08:00
										 |  |  | } |