2011-01-28 07:07:18 +00:00
/ *
Copyright 2011 Google 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 .
* /
2011-01-18 02:28:38 +00:00
package main
import (
"crypto/sha1"
Update from r60 to [almost] Go 1.
A lot is still broken, but most stuff at least compiles now.
The directory tree has been rearranged now too. Go libraries are now
under "pkg". Fully qualified, they are e.g. "camlistore.org/pkg/jsonsign".
The go tool cannot yet fetch from arbitrary domains, but discussion is
happening now on which mechanism to use to allow that.
For now, put the camlistore root under $GOPATH/src. Typically $GOPATH
is $HOME, so Camlistore should be at $HOME/src/camlistore.org.
Then you can:
$ go build ./server/camlistored
... etc
The build.pl script is currently disabled. It'll be resurrected at
some point, but with a very different role (helping create a fake
GOPATH and running the go build command, if things are installed at
the wrong place, and/or running fileembed generators).
Many things are certainly broken.
Many things are disabled. (MySQL, all indexing, etc).
Many things need to be moved into
camlistore.org/third_party/{code.google.com,github.com} and updated
from their r60 to Go 1 versions, where applicable.
The GoMySQL stuff should be updated to use database/sql and the ziutek
library implementing database/sql/driver.
Help wanted.
Change-Id: If71217dc5c8f0e70dbe46e9504ca5131c6eeacde
2012-02-19 05:53:06 +00:00
"encoding/json"
2011-01-18 02:28:38 +00:00
"flag"
2011-09-26 00:40:01 +00:00
"fmt"
2011-01-18 02:28:38 +00:00
"io/ioutil"
"log"
2011-12-07 22:41:19 +00:00
"os"
Update from r60 to [almost] Go 1.
A lot is still broken, but most stuff at least compiles now.
The directory tree has been rearranged now too. Go libraries are now
under "pkg". Fully qualified, they are e.g. "camlistore.org/pkg/jsonsign".
The go tool cannot yet fetch from arbitrary domains, but discussion is
happening now on which mechanism to use to allow that.
For now, put the camlistore root under $GOPATH/src. Typically $GOPATH
is $HOME, so Camlistore should be at $HOME/src/camlistore.org.
Then you can:
$ go build ./server/camlistored
... etc
The build.pl script is currently disabled. It'll be resurrected at
some point, but with a very different role (helping create a fake
GOPATH and running the go build command, if things are installed at
the wrong place, and/or running fileembed generators).
Many things are certainly broken.
Many things are disabled. (MySQL, all indexing, etc).
Many things need to be moved into
camlistore.org/third_party/{code.google.com,github.com} and updated
from their r60 to Go 1 versions, where applicable.
The GoMySQL stuff should be updated to use database/sql and the ziutek
library implementing database/sql/driver.
Help wanted.
Change-Id: If71217dc5c8f0e70dbe46e9504ca5131c6eeacde
2012-02-19 05:53:06 +00:00
"os/exec"
2011-12-07 22:41:19 +00:00
"path"
2011-04-02 05:26:33 +00:00
Update from r60 to [almost] Go 1.
A lot is still broken, but most stuff at least compiles now.
The directory tree has been rearranged now too. Go libraries are now
under "pkg". Fully qualified, they are e.g. "camlistore.org/pkg/jsonsign".
The go tool cannot yet fetch from arbitrary domains, but discussion is
happening now on which mechanism to use to allow that.
For now, put the camlistore root under $GOPATH/src. Typically $GOPATH
is $HOME, so Camlistore should be at $HOME/src/camlistore.org.
Then you can:
$ go build ./server/camlistored
... etc
The build.pl script is currently disabled. It'll be resurrected at
some point, but with a very different role (helping create a fake
GOPATH and running the go build command, if things are installed at
the wrong place, and/or running fileembed generators).
Many things are certainly broken.
Many things are disabled. (MySQL, all indexing, etc).
Many things need to be moved into
camlistore.org/third_party/{code.google.com,github.com} and updated
from their r60 to Go 1 versions, where applicable.
The GoMySQL stuff should be updated to use database/sql and the ziutek
library implementing database/sql/driver.
Help wanted.
Change-Id: If71217dc5c8f0e70dbe46e9504ca5131c6eeacde
2012-02-19 05:53:06 +00:00
"camlistore.org/pkg/blobref"
"camlistore.org/pkg/client"
"camlistore.org/pkg/jsonsign"
"camlistore.org/pkg/osutil"
2011-01-18 02:28:38 +00:00
)
2011-09-26 00:40:01 +00:00
type initCmd struct {
gpgkey string
}
func init ( ) {
2011-09-27 03:02:35 +00:00
RegisterCommand ( "init" , func ( flags * flag . FlagSet ) CommandRunner {
cmd := new ( initCmd )
flags . StringVar ( & cmd . gpgkey , "gpgkey" , "" , "GPG key to use for signing (overrides $GPGKEY environment)" )
return cmd
} )
2011-09-26 00:40:01 +00:00
}
func ( c * initCmd ) Usage ( ) {
fmt . Fprintf ( os . Stderr , ` Usage : camput init [ opts ]
Initialize the camput configuration file .
` )
}
2011-09-27 03:02:35 +00:00
func ( c * initCmd ) Examples ( ) [ ] string {
return [ ] string {
"" ,
"--gpgkey=XXXXX" ,
2011-09-26 00:40:01 +00:00
}
2011-09-27 03:02:35 +00:00
}
Update from r60 to [almost] Go 1.
A lot is still broken, but most stuff at least compiles now.
The directory tree has been rearranged now too. Go libraries are now
under "pkg". Fully qualified, they are e.g. "camlistore.org/pkg/jsonsign".
The go tool cannot yet fetch from arbitrary domains, but discussion is
happening now on which mechanism to use to allow that.
For now, put the camlistore root under $GOPATH/src. Typically $GOPATH
is $HOME, so Camlistore should be at $HOME/src/camlistore.org.
Then you can:
$ go build ./server/camlistored
... etc
The build.pl script is currently disabled. It'll be resurrected at
some point, but with a very different role (helping create a fake
GOPATH and running the go build command, if things are installed at
the wrong place, and/or running fileembed generators).
Many things are certainly broken.
Many things are disabled. (MySQL, all indexing, etc).
Many things need to be moved into
camlistore.org/third_party/{code.google.com,github.com} and updated
from their r60 to Go 1 versions, where applicable.
The GoMySQL stuff should be updated to use database/sql and the ziutek
library implementing database/sql/driver.
Help wanted.
Change-Id: If71217dc5c8f0e70dbe46e9504ca5131c6eeacde
2012-02-19 05:53:06 +00:00
func ( c * initCmd ) RunCommand ( up * Uploader , args [ ] string ) error {
2011-09-27 03:02:35 +00:00
if len ( args ) > 0 {
2011-09-26 00:40:01 +00:00
return ErrUsage
}
2011-01-18 02:28:38 +00:00
2011-04-02 05:26:33 +00:00
blobDir := path . Join ( osutil . CamliConfigDir ( ) , "keyblobs" )
os . Mkdir ( osutil . CamliConfigDir ( ) , 0700 )
2011-01-18 02:28:38 +00:00
os . Mkdir ( blobDir , 0700 )
2011-09-26 00:40:01 +00:00
keyId := c . gpgkey
2011-01-18 02:28:38 +00:00
if keyId == "" {
keyId = os . Getenv ( "GPGKEY" )
}
if keyId == "" {
// TODO: run and parse gpg --list-secret-keys and see if there's just one and suggest that? Or show
// a list of them?
2011-02-02 20:27:30 +00:00
log . Fatalf ( "Initialization requires your public GPG key. Set --gpgkey=<pubid> or set $GPGKEY in your environment. Run gpg --list-secret-keys to find their key IDs." )
2011-01-18 02:28:38 +00:00
}
if os . Getenv ( "GPG_AGENT_INFO" ) == "" {
log . Printf ( "No GPG_AGENT_INFO found in environment; you should setup gnupg-agent. camput will be annoying otherwise." )
}
// TODO: use same command-line flag as the jsonsign package.
// unify them into a shared package just for gpg-related stuff?
2011-06-02 23:47:40 +00:00
keyBytes , err := exec . Command ( "gpg" , "--export" , "--armor" , keyId ) . Output ( )
2011-01-18 02:28:38 +00:00
if err != nil {
2011-07-02 16:09:50 +00:00
log . Fatalf ( "Error running gpg to export public key: %v" , err )
}
2011-01-18 02:28:38 +00:00
hash := sha1 . New ( )
hash . Write ( keyBytes )
bref := blobref . FromHash ( "sha1" , hash )
2011-07-02 16:09:50 +00:00
keyBlobPath := path . Join ( blobDir , bref . String ( ) + ".camli" )
2011-01-18 02:28:38 +00:00
if err = ioutil . WriteFile ( keyBlobPath , keyBytes , 0644 ) ; err != nil {
2011-02-02 20:27:30 +00:00
log . Fatalf ( "Error writing public key blob to %q: %v" , keyBlobPath , err )
2011-01-18 02:28:38 +00:00
}
2011-07-02 16:09:50 +00:00
2011-01-18 02:28:38 +00:00
if ok , err := jsonsign . VerifyPublicKeyFile ( keyBlobPath , keyId ) ; ! ok {
2011-02-02 20:27:30 +00:00
log . Fatalf ( "Error verifying public key at %q: %v" , keyBlobPath , err )
2011-01-18 02:28:38 +00:00
}
2011-07-02 16:09:50 +00:00
2011-01-18 02:28:38 +00:00
log . Printf ( "Your Camlistore identity (your GPG public key's blobref) is: %s" , bref . String ( ) )
_ , err = os . Stat ( client . ConfigFilePath ( ) )
if err == nil {
2011-02-02 20:27:30 +00:00
log . Fatalf ( "Config file %q already exists; quitting without touching it." , client . ConfigFilePath ( ) )
2011-01-18 02:28:38 +00:00
}
2011-04-07 17:58:29 +00:00
if f , err := os . OpenFile ( client . ConfigFilePath ( ) , os . O_CREATE | os . O_EXCL | os . O_WRONLY , 0600 ) ; err == nil {
2011-01-18 02:28:38 +00:00
defer f . Close ( )
m := make ( map [ string ] interface { } )
m [ "publicKeyBlobref" ] = bref . String ( )
2011-01-18 18:29:38 +00:00
blobPut := make ( [ ] map [ string ] string , 1 )
blobPut [ 0 ] = map [ string ] string {
2011-07-02 16:09:50 +00:00
"alias" : "local" ,
"host" : "http://localhost:3179/" ,
2011-01-18 18:29:38 +00:00
"password" : "test" ,
}
m [ "blobPut" ] = blobPut
blobGet := make ( [ ] map [ string ] string , 2 )
blobGet [ 0 ] = map [ string ] string {
"alias" : "keyblobs" ,
2011-07-02 16:09:50 +00:00
"path" : "$HOME/.camli/keyblobs" ,
2011-01-18 18:29:38 +00:00
}
blobGet [ 1 ] = map [ string ] string {
2011-07-02 16:09:50 +00:00
"alias" : "local" ,
"host" : "http://localhost:3179/" ,
2011-01-18 18:29:38 +00:00
"password" : "test" ,
}
m [ "blobGet" ] = blobGet
2011-01-18 02:28:38 +00:00
jsonBytes , err := json . MarshalIndent ( m , "" , " " )
if err != nil {
2011-02-02 20:27:30 +00:00
log . Fatalf ( "JSON serialization error: %v" , err )
2011-01-18 02:28:38 +00:00
}
_ , err = f . Write ( jsonBytes )
if err != nil {
2011-02-02 20:27:30 +00:00
log . Fatalf ( "Error writing to %q: %v" , client . ConfigFilePath ( ) , err )
2011-01-18 02:28:38 +00:00
}
log . Printf ( "Wrote %q; modify as necessary." , client . ConfigFilePath ( ) )
}
2011-09-26 00:40:01 +00:00
return nil
2011-02-02 20:27:30 +00:00
}