forked from awa/go-iap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(appstore): add decode notification v2 body method to appstore
- Loading branch information
Showing
2 changed files
with
146 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,129 @@ | ||
package appstore | ||
|
||
import ( | ||
"crypto/ecdsa" | ||
"crypto/x509" | ||
"encoding/base64" | ||
"encoding/json" | ||
"errors" | ||
"fmt" | ||
"strings" | ||
) | ||
|
||
// rootPEM is generated through `openssl x509 -inform der -in AppleRootCA-G3.cer -out apple_root.pem` | ||
const rootPEM = ` | ||
-----BEGIN CERTIFICATE----- | ||
MIICQzCCAcmgAwIBAgIILcX8iNLFS5UwCgYIKoZIzj0EAwMwZzEbMBkGA1UEAwwS | ||
QXBwbGUgUm9vdCBDQSAtIEczMSYwJAYDVQQLDB1BcHBsZSBDZXJ0aWZpY2F0aW9u | ||
IEF1dGhvcml0eTETMBEGA1UECgwKQXBwbGUgSW5jLjELMAkGA1UEBhMCVVMwHhcN | ||
MTQwNDMwMTgxOTA2WhcNMzkwNDMwMTgxOTA2WjBnMRswGQYDVQQDDBJBcHBsZSBS | ||
b290IENBIC0gRzMxJjAkBgNVBAsMHUFwcGxlIENlcnRpZmljYXRpb24gQXV0aG9y | ||
aXR5MRMwEQYDVQQKDApBcHBsZSBJbmMuMQswCQYDVQQGEwJVUzB2MBAGByqGSM49 | ||
AgEGBSuBBAAiA2IABJjpLz1AcqTtkyJygRMc3RCV8cWjTnHcFBbZDuWmBSp3ZHtf | ||
TjjTuxxEtX/1H7YyYl3J6YRbTzBPEVoA/VhYDKX1DyxNB0cTddqXl5dvMVztK517 | ||
IDvYuVTZXpmkOlEKMaNCMEAwHQYDVR0OBBYEFLuw3qFYM4iapIqZ3r6966/ayySr | ||
MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMAoGCCqGSM49BAMDA2gA | ||
MGUCMQCD6cHEFl4aXTQY2e3v9GwOAEZLuN+yRhHFD/3meoyhpmvOwgPUnPWTxnS4 | ||
at+qIxUCMG1mihDK1A3UT82NQz60imOlM27jbdoXt2QfyFMm+YhidDkLF1vLUagM | ||
6BgD56KyKA== | ||
-----END CERTIFICATE----- | ||
` | ||
|
||
type Cert struct{} | ||
|
||
// ExtractCertByIndex extracts the certificate from the token string by index. | ||
func (c *Cert) extractCertByIndex(tokenStr string, index int) ([]byte, error) { | ||
if index > 2 { | ||
return nil, errors.New("invalid index") | ||
} | ||
|
||
tokenArr := strings.Split(tokenStr, ".") | ||
headerByte, err := base64.RawStdEncoding.DecodeString(tokenArr[0]) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
type Header struct { | ||
Alg string `json:"alg"` | ||
X5c []string `json:"x5c"` | ||
} | ||
var header Header | ||
err = json.Unmarshal(headerByte, &header) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
certByte, err := base64.StdEncoding.DecodeString(header.X5c[index]) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return certByte, nil | ||
} | ||
|
||
// VerifyCert verifies the certificate chain. | ||
func (c *Cert) verifyCert(rootCert, intermediaCert, leafCert *x509.Certificate) error { | ||
roots := x509.NewCertPool() | ||
ok := roots.AppendCertsFromPEM([]byte(rootPEM)) | ||
if !ok { | ||
return errors.New("failed to parse root certificate") | ||
} | ||
|
||
intermedia := x509.NewCertPool() | ||
intermedia.AddCert(intermediaCert) | ||
|
||
opts := x509.VerifyOptions{ | ||
Roots: roots, | ||
Intermediates: intermedia, | ||
} | ||
_, err := rootCert.Verify(opts) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
_, err = leafCert.Verify(opts) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (c *Cert) ExtractPublicKeyFromToken(token string) (*ecdsa.PublicKey, error) { | ||
rootCertBytes, err := c.extractCertByIndex(token, 2) | ||
if err != nil { | ||
return nil, err | ||
} | ||
rootCert, err := x509.ParseCertificate(rootCertBytes) | ||
if err != nil { | ||
return nil, fmt.Errorf("appstore failed to parse root certificate") | ||
} | ||
|
||
intermediaCertBytes, err := c.extractCertByIndex(token, 1) | ||
if err != nil { | ||
return nil, err | ||
} | ||
intermediaCert, err := x509.ParseCertificate(intermediaCertBytes) | ||
if err != nil { | ||
return nil, fmt.Errorf("appstore failed to parse intermediate certificate") | ||
} | ||
|
||
leafCertBytes, err := c.extractCertByIndex(token, 0) | ||
if err != nil { | ||
return nil, err | ||
} | ||
leafCert, err := x509.ParseCertificate(leafCertBytes) | ||
if err != nil { | ||
return nil, fmt.Errorf("appstore failed to parse leaf certificate") | ||
} | ||
if err = c.verifyCert(rootCert, intermediaCert, leafCert); err != nil { | ||
return nil, err | ||
} | ||
|
||
switch pk := leafCert.PublicKey.(type) { | ||
case *ecdsa.PublicKey: | ||
return pk, nil | ||
default: | ||
return nil, errors.New("appstore public key must be of type ecdsa.PublicKey") | ||
} | ||
} |
This file contains 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