customer_service_im 0.9.0 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ef3046967b653b6fef336b498b9ce38b2cf38f83a438cc7b0a6940f643521534
4
- data.tar.gz: 0ea99dfdc1571c5ed16248cbcb68e9267aadffa2c0b10cbb94039bf873ab7818
3
+ metadata.gz: d3331358c3827e2c1f00ce50f8ea26e1196f104f0237c3cf74c48bbd469c5c8f
4
+ data.tar.gz: e0372649abf50bbcf264a7966ff54cb2cddc4399833652693625bbf52e3f2260
5
5
  SHA512:
6
- metadata.gz: 6e8a80069a9478884028aed58ca3219ead1719f1d80836fb8a95f0b04d91a7e5ae792ab68c1e6ad0bd93f4ba3b8bd9889d502e08bd51bdca9e0181c6f8b844c8
7
- data.tar.gz: 998059851c9d83fd45a526fa9d2970cb93547796deb809c45d97ae5b92ff9f0b7c865b356dfa2b273b10d60a6faf7d894b9371aa864797f5d3e26f1c0fbfe789
6
+ metadata.gz: 199fb439a35875227e7aabaff3cfee31785dba41ab33709b4763fd443029f552e8c6fe84760172dda276aef9fd6f78a18ca6db8377b78c792b827103cd6ca10d
7
+ data.tar.gz: e5501c757b45ed71af55a5c16066223a186d88a0ae2e5a6196867b16476fd8f1588c4b23d6b5a566d72eb1e55a9509ca1915040808282fd87de2b947fcec1f19
@@ -77,7 +77,6 @@ module CustomerServiceIm::Concerns::Customer
77
77
 
78
78
  User.create_with(
79
79
  email: "#{SecureRandom.uuid}@mp.com",
80
- password: Digest::MD5.hexdigest(open_id)
81
80
  ).find_or_create_by(open_id: open_id)
82
81
  end
83
82
  end
@@ -82,7 +82,7 @@ module CustomerServiceIm
82
82
  else
83
83
  logger = Logger.new Rails.root.join("log/speech_recognition.log")
84
84
  logger.error result.errors
85
- raise TsrRecognizeError.new(result.errors)
85
+ raise CustomerServiceIm::AsrRecognizeError.new(result.errors)
86
86
  end
87
87
  end
88
88
 
@@ -1,12 +1,6 @@
1
1
 
2
2
  TxAsr.setup do |config|
3
3
 
4
- # TODO 需要将 secret_key 和 secret_id 改为你实际项目中的配置
5
- config.secret_key = "JL6amhMkqfDVWGjuoRp1DI8j48wTnunQ"
6
- config.secret_id = "AKIDta1B5i49yXpqb5HCqELBk35qJWS7VcS1"
7
- config.region = "ap-guangzhou"
8
-
9
-
10
4
  # 声音格式: 支持 mp3 和 wav
11
5
  config.voice_format = "mp3"
12
6
 
@@ -0,0 +1,4 @@
1
+
2
+ module CustomerServiceIm
3
+ class AsrRecognizeError < StandardError; end
4
+ end
@@ -1,3 +1,3 @@
1
1
  module CustomerServiceIm
2
- VERSION = '0.9.0'
2
+ VERSION = '0.13.0'
3
3
  end
@@ -1,6 +1,7 @@
1
1
  require "customer_service_im/version"
2
2
  require "customer_service_im/engine"
3
3
  require "customer_service_im/core_ext"
4
+ require "customer_service_im/asr_recognize_error"
4
5
  # require 'shoulda'
5
6
  require "jwt"
6
7
  require 'jbuilder'
@@ -10,11 +11,16 @@ require 'mini_program'
10
11
 
11
12
  module CustomerServiceIm
12
13
  # Your code goes here...
13
- mattr_accessor :appid, :app_secret, :jwt_secret
14
+ mattr_accessor :appid, :app_secret, :jwt_secret, :asr_config
14
15
 
15
16
  def self.setup
16
17
  if block_given?
17
18
  yield self
19
+ MiniProgram.appid = appid
20
+ MiniProgram.app_secret = app_secret
21
+ TxAsr.secret_key = asr_config&.fetch(:secret_key, :blank_asr_secret_key)
22
+ TxAsr.secret_id = asr_config&.fetch(:secret_id, :blank_asr_secret_id)
23
+ TxAsr.region = asr_config&.fetch(:region, :blank_asr_region)
18
24
  end
19
25
  end
20
26
  end
@@ -3,6 +3,6 @@ class CustomerServiceIm::InstallGenerator < Rails::Generators::Base
3
3
 
4
4
  def copy_initializer
5
5
  copy_file "initializer.rb", "config/initializers/customer_service_im.rb"
6
- rake "mini_program:install"
6
+ generate "mini_program:install"
7
7
  end
8
8
  end
@@ -3,4 +3,11 @@ CustomerServiceIm.setup do |config|
3
3
  config.jwt_secret = Rails.application.secret_key_base
4
4
  config.appid = "xxx"
5
5
  config.app_secret = "x1x"
6
+
7
+ # tencent asr config
8
+ config.asr_config = {
9
+ secret_key: "tencent asr secret key",
10
+ secret_id: "tencent asr secret id",
11
+ region: "tencent asr "
12
+ }
6
13
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: customer_service_im
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ian
@@ -189,6 +189,7 @@ files:
189
189
  - db/migrate/20211026062727_add_password_digest_to_customer_service_im_staffs.rb
190
190
  - db/migrate/20211026062951_add_email_to_customer_service_im_staffs.rb
191
191
  - lib/customer_service_im.rb
192
+ - lib/customer_service_im/asr_recognize_error.rb
192
193
  - lib/customer_service_im/core_ext.rb
193
194
  - lib/customer_service_im/engine.rb
194
195
  - lib/customer_service_im/version.rb
@@ -196,7 +197,6 @@ files:
196
197
  - lib/generators/customer_service_im/install/install_generator.rb
197
198
  - lib/generators/customer_service_im/install/templates/initializer.rb
198
199
  - lib/tasks/customer_service_im_tasks.rake
199
- - lib/tsr_recognize_error.rb
200
200
  homepage: https://github.com/bkyz/customer_service_im
201
201
  licenses:
202
202
  - MIT
@@ -1,2 +0,0 @@
1
-
2
- class TsrRecognizeError < StandardError; end