基于Hyperledger Fabric构建一个简易 Web App

最近接触了Hyperledger Fabric,官网给的app并没有界面,不过有一个单页版的项目,在此基础上做出了一个简易的 web app
github项目地址
功能:

  1. 发布食品
  2. 添加配料信息
  3. 中转食品
  4. 查询食品信息
  5. 查询配料信息
  6. 查询中转信息

前言

本篇文章只会对我认为比较重要地部分进行大致地讲解,不会讲解细节,如果有什么疑惑的地方请在评论区进行评论,会根据评论情况进行下一篇文章的编写

项目架构

前端使用AngularJs来进行页面渲染,后台使用Node.js返回Json数据,数据存储在Hyperledger Fabric提供的数据库

启动脚本详解

source-app/server.js

const middlewares = [
  express.static(path.join(__dirname, 'public')),//静态文件
  bodyParser.urlencoded({ extended: true }),//解析POST所传参数
  cookieParser(),//使用Cookie来进行Flash文字演示
  session({
    secret: 'super-secret-key',
    key: 'super-secret-cookie',
    resave: false,
    saveUninitialized: false,
    cookie: { maxAge: 60000}
  }),
  flash()
]
app.use(middlewares)//激活中间件
app.use(express.static(path.join(__dirname, 'views')));//使用模板
app.set('view engine', 'ejs');//配置模板引擎
require('./routes.js')(app);

URL分为三个部分

Part 1

获取HTML
source-app/routes.js

app.get('/', function(req, res) {
        tuna.index(req, res);
});
...

Part 2

表单

表单提交流程

填写表单->POST到特定的URL->处理表单信息->重定向到首页

表单的HTML代码编写
source-app/views/form.ejs

<form method="post" action="/re_form" novalidate>
    <div class="section">食品信息</div>
    <div class="inner-wrap">
        <label>食品编号 <input type="text" name="field1" /></label>
        <label>食品名称 <input type="text" name="field1" /></label>
        <label>食品规格 <input type="text" name="field1" /></label>
        <label>食品生产日期 <input type="text" name="field1" /></label>
        <label>食品保质期 <input type="text" name="field1" /></label>
        <label>食品批次号 <input type="text" name="field1" /></label>
        <label>食品生产许可证编号<input type="text" name="field1" /></label>
        <label>食品生产商名称 <input type="text" name="field1" /></label>
        <label>食品生产价格<input type="text" name="field1" /></label>
        <label>食品生产所在地<input type="text" name="field1" /></label>
    </div>
    <div class="button-section">
     <input type="submit" name="提交" />
    </div>
</form>

POST到特定的URL
source-app/routes.js

app.post('/re_form', function(req, res) {
        var function_name = 'addProInfo'//调用chaincode中的函数
        tuna.re_form(req, res, function_name);
});

表单处理
source-app/controller.js

const request = {
    chaincodeId: 'source-app',
    fcn: function_name,//调用chaincode中的函数
    args: req.body.field1,//获取表单所填信息(函数所需参数)
    chainId: 'mychannel',
    txId: tx_id
};

调用Chaincode

chaincode/source-app/source-app.go

func (a *FoodChainCode) addProInfo(stub shim.ChaincodeStubInterface, args []string) pb.Response {
    var err error 
    var FoodInfos FoodInfo

    if len(args)!=10{
        return shim.Error("Incorrect number of arguments.")
    }
    FoodInfos.FoodID = args[0]
    if FoodInfos.FoodID == ""{
        return shim.Error("FoodID can not be empty.")
    }
    
    
    FoodInfos.FoodProInfo.FoodName = args[1]
    FoodInfos.FoodProInfo.FoodSpec = args[2]
    FoodInfos.FoodProInfo.FoodMFGDate = args[3]
    FoodInfos.FoodProInfo.FoodEXPDate = args[4]
    FoodInfos.FoodProInfo.FoodLOT = args[5]
    FoodInfos.FoodProInfo.FoodQSID = args[6]
    FoodInfos.FoodProInfo.FoodMFRSName = args[7]
    FoodInfos.FoodProInfo.FoodProPrice = args[8]
    FoodInfos.FoodProInfo.FoodProPlace = args[9]
    ProInfosJSONasBytes,err := json.Marshal(FoodInfos)
    if err != nil{
        return shim.Error(err.Error())
    }

    err = stub.PutState(FoodInfos.FoodID,ProInfosJSONasBytes)
    if err != nil{
        return shim.Error(err.Error())
    }

    return shim.Success(nil)
}

Part 3

返回Json
source-app/routes.js

app.get('/source/:id', function(req, res) {
    var function_name = 'getProInfo'//调用chaincode函数
    tuna.get_tuna(req, res, function_name);
});

source-app/controller.js

const request = {
    chaincodeId: 'source-app',
    txId: tx_id,
    fcn: function_name,//调用chaincode函数
    args: [key]//函数所需参数
};

调用Chaincode
chaincode/source-app/source-app.go

func(a *FoodChainCode) getProInfo (stub shim.ChaincodeStubInterface,args []string) pb.Response{
    
    if len(args) != 1{
        return shim.Error("Incorrect number of arguments.")
    }
    FoodID := args[0]
    resultsIterator,err := stub.GetHistoryForKey(FoodID)
    if err != nil {
        return shim.Error(err.Error())
    }
    defer resultsIterator.Close()
    
    var foodProInfo ProInfo

    for resultsIterator.HasNext(){
        var FoodInfos FoodInfo
        response,err :=resultsIterator.Next()
        if err != nil {
            return shim.Error(err.Error())
        }
        json.Unmarshal(response.Value,&FoodInfos)
        if FoodInfos.FoodProInfo.FoodName != ""{
            foodProInfo = FoodInfos.FoodProInfo
            continue
        }
    }
    jsonsAsBytes,err := json.Marshal(foodProInfo)//转为Json格式
    if err != nil {
        return shim.Error(err.Error())
    }
    return shim.Success(jsonsAsBytes)
}

例子
访问http://120.27.18.178:3389/source/1001,可以得到以下数据

{"FoodName":"苹果","FoodSpec":"123456","FoodMFGDate":"2018-8-27","FoodEXPDate":"一月","FoodLOT":"123","FoodQSID":"456","FoodMFRSName":"啦啦啦","FoodProPrice":"2","FoodProPlace":"郑州"}

AngularJs与单页页面

如果我们没有进行查询,我们希望页面呈现为这样


blog_1.JPG

当我们查询之后,我们希望页面呈现为这样


blog_1.JPG

HTML代码编写

source-app/views/search.ejs

<body ng-app="application" ng-controller="appController">
        <div class="form-wrapper">
            <input type="text" id="search" placeholder="食品编号..." ng-model="query_id" required>
            <input type="submit" value="搜索" id="submit" ng-click="querySource()">
        </div>
        <table cellspacing="0" id="query_source">
            <tr>
                <th>食品名称</th>
                <th>食品规格</th>
                <th>食品生产日期</th>
                <th>食品保质期</th>
                <th>食品批次号</th>
                <th>食品生产许可证编号</th>
                <th>食品生产商名称</th>
                <th>食品生产价格</th>
                <th>食品生产所在地</th>
            </tr>
            <tr>
                    <td>{{query_source.FoodName}}</td>
                    <td>{{query_source.FoodSpec}}</td>
                    <td>{{query_source.FoodMFGDate}}</td>
                    <td>{{query_source.FoodEXPDate}}</td>
                <td>{{query_source.FoodLOT}}</td>
                <td>{{query_source.FoodQSID}}</td>
                <td>{{query_source.FoodMFRSName}}</td>
                <td>{{query_source.FoodProPrice}}</td>
                <td>{{query_source.FoodProPlace}}</td>
                </tr>
        </table>
    </body>

AngularJs脚本编写

source-app/public/js/app.js

var app = angular.module('application', []);

// Angular Controller
app.controller('appController', function($scope, appFactory){

    $("#success_holder").hide();
    $("#success_create").hide();
    $("#error_holder").hide();
    $("#error_query").hide();
    $scope.querySource = function(){
        var id = $scope.query_id;
        appFactory.querySource(id, function(data){
            $scope.query_source = data;
            if ($scope.query_tuna == "Could not locate tuna"){
                console.log()
                $("#error_query").show();
            } else{
                $("#error_query").hide();
            }
        });
    }
});

app.factory('appFactory', function($http){
    var factory = {};
    factory.querySource = function(id, callback){
        $http.get('/source/'+id).success(function(output){
            callback(output)
        });
    }
});

可以不用搞懂basic-network文件夹(我自己也不懂,不过并不影响写项目,如果读者懂,欢迎指导)

如果有什么不懂的地方或想搞懂更细节的地方,请在评论区留言,下一篇文章会依据评论来定方向

参考链接
Education
Writing Your First Application

欢迎star😉

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容