Replace user example by helloworld example, cleanup

This commit is contained in:
Mathieu Acthernoene
2016-12-19 15:21:28 +01:00
parent eec84d5d96
commit 5c6941cf87
7 changed files with 624 additions and 243 deletions

View File

@@ -0,0 +1,53 @@
// Copyright 2015, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.$
syntax = "proto3";
option java_multiple_files = true;
option java_package = "io.grpc.examples.helloworld";
option java_outer_classname = "HelloWorldProto";
option objc_class_prefix = "HLW";
package helloworld;
// The greeting service definition.
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply) {}
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
message HelloReply {
string message = 1;
}

View File

@@ -1,66 +0,0 @@
syntax = "proto3";
package user;
option go_package = "github.com/united-drivers/models/go/user;userpb";
// import "google/api/annotations.proto";
// service UserService {
// rpc Register(RegisterRequest) returns (RegisterReply) {option (google.api.http).post = "/user/register";}
// rpc GetUserProfile(GetUserProfileRequest) returns (GetUserProfileReply) {option (google.api.http).post = "/user/get-user-profile";}
// rpc UpdateProfile(UpdateProfileRequest) returns (UpdateProfileReply) {option (google.api.http).post = "/user/update-profile";}
// rpc UploadDocument(UploadDocumentRequest) returns (UploadDocumentReply) {option (google.api.http).post = "/user/upload-document";}
// }
service UserService {
rpc Register(RegisterRequest) returns (RegisterReply);
rpc GetUserProfile(GetUserProfileRequest) returns (GetUserProfileReply);
rpc UpdateProfile(UpdateProfileRequest) returns (UpdateProfileReply);
rpc UploadDocument(UploadDocumentRequest) returns (UploadDocumentReply);
}
message UpdateProfileRequest {
Profile profile = 1;
}
message UpdateProfileReply {
string err_msg = 1;
}
message UploadDocumentRequest {
string path = 1;
string document = 2;
}
message UploadDocumentReply {
string err_msg = 1;
}
message Profile {
string id = 1;
string email = 2;
string first_name = 3;
string last_name = 4;
string picture = 5;
string promo_code = 6;
string phone_number = 7;
}
message RegisterRequest {
string first_name = 1;
string last_name = 2;
string email = 3;
string phone_number = 4;
}
message RegisterReply {
string err_msg = 1;
}
message GetUserProfileRequest {}
message GetUserProfileReply {
Profile profile = 1;
string err_msg = 2;
}