-
-
Notifications
You must be signed in to change notification settings - Fork 4
Refactor config init command #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
71782ac
Get default arduino15 folder
polldo 07f0c8e
Set arduino15 as default config dir
polldo 05a817e
Get id and secret from prompt
polldo ffe1572
Refactor cli config
polldo bf6ffc5
Fix error formatting
polldo da8f312
Export arduino DataDir
polldo 2c3895d
Update cli/config/init.go
842e213
Update cli/config/init.go
4bcc7ba
Update cli/config/init.go
6a2a541
Improve errors and feedback
polldo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// This file is part of arduino-cloud-cli. | ||
// | ||
// Copyright (C) 2021 ARDUINO SA (http://www.arduino.cc/) | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU Affero General Public License as published | ||
// by the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU Affero General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Affero General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
package arduino | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"path/filepath" | ||
"runtime" | ||
|
||
"github.com/arduino/go-paths-helper" | ||
"github.com/arduino/go-win32-utils" | ||
) | ||
|
||
// DataDir returns the Arduino default data directory (arduino15) | ||
func DataDir() (*paths.Path, error) { | ||
userHomeDir, err := os.UserHomeDir() | ||
if err != nil { | ||
return nil, fmt.Errorf("unable to get user home dir: %w", err) | ||
} | ||
|
||
var path *paths.Path | ||
switch runtime.GOOS { | ||
case "darwin": | ||
path = paths.New(filepath.Join(userHomeDir, "Library", "Arduino15")) | ||
case "windows": | ||
localAppDataPath, err := win32.GetLocalAppDataFolder() | ||
if err != nil { | ||
return nil, fmt.Errorf("unable to get local app data folder: %w", err) | ||
} | ||
path = paths.New(filepath.Join(localAppDataPath, "Arduino15")) | ||
default: // linux, android, *bsd, plan9 and other Unix-like systems | ||
path = paths.New(filepath.Join(userHomeDir, ".arduino15")) | ||
} | ||
|
||
return path, nil | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as resolved.
Sorry, something went wrong.
This comment was marked as resolved.
Sorry, something went wrong.