Commit 14033567 by Ngô Trung Hưng

Merge branch 'master' into 'joblist'

# Conflicts:
#   app/views/home/_banner_and_search.html.erb
#   config/application.rb
parents 125cc119 c5992cdd
Pipeline #827 canceled with stages
in 0 seconds
......@@ -25,3 +25,4 @@
# Ignore master key for decrypting credentials and more.
/config/master.key
/lib/csv
......@@ -6,6 +6,8 @@ class City < ApplicationRecord
RANGE = 69
has_many :city_jobs
has_many :jobs, through: :city_jobs
enum area: { international: 0, domestic:1}
has_many :jobs, through: :city_jobs
enum area: { international: 0, domestic: 1 }
scope :domestic, -> { where(area: 1) }
scope :international, -> { where(area: 0) }
......
<div class = "box-banner">
<%= image_tag 'banner-search-box-home', class: 'banner-top' %>
<%= image_tag 'banner-search-box-home.png', class: "banner-top" %>
<div class="row">
<div class="col-xs-12">
<div class = "slogan">
......
......@@ -2,7 +2,7 @@
<html>
<head>
<title><%= full_title(yield(:title)) %></title>
<%= favicon_link_tag 'icontitle' %>
<%= favicon_link_tag 'icontitle.png' %>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
......
......@@ -11,6 +11,7 @@ module Venjob
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 5.2
config.exceptions_app = self.routes
config.autoload_paths << Rails.root.join('lib/service')
config.autoload_paths << Rails.root.join('lib/src')
# Settings in config/environments/* take precedence over those specified here.
# Application configuration can go into files in config/initializers
......
......@@ -11,7 +11,7 @@
#
default: &default
adapter: mysql2
encoding: utf8
encoding: utf8mb4
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
username: root
password: '1'
......@@ -52,3 +52,4 @@ production:
database: venjob_production
username: venjob
password: <%= ENV['VENJOB_DATABASE_PASSWORD'] %>
url: <%= ENV['JAWSDB_URL'] %>
......@@ -3,7 +3,7 @@
# Description/Explanation of Person class
class CreateCompanies < ActiveRecord::Migration[5.2]
def change
create_table :companies, options: 'COLLATE=utf8_general_ci' do |t|
create_table :companies do |t|
t.string :name
t.string :address
t.text :short_description
......
......@@ -3,7 +3,7 @@
# Description/Explanation of Person class
class CreateCities < ActiveRecord::Migration[5.2]
def change
create_table :cities, options: 'COLLATE=utf8_general_ci' do |t|
create_table :cities do |t|
t.string :name
t.boolean :area
t.timestamps
......
......@@ -3,7 +3,7 @@
# Description/Explanation of Person class
class CreateIndustries < ActiveRecord::Migration[5.2]
def change
create_table :industries, options: 'COLLATE=utf8_general_ci' do |t|
create_table :industries do |t|
t.string :name
t.timestamps
end
......
......@@ -3,7 +3,7 @@
# Description/Explanation of Person class
class CreateJobs < ActiveRecord::Migration[5.2]
def change
create_table :jobs, options: 'COLLATE=utf8_general_ci' do |t|
create_table :jobs do |t|
t.string :name
t.integer :company_id
t.string :level
......
......@@ -3,7 +3,7 @@
# Description/Explanation of Person class
class CreateHistories < ActiveRecord::Migration[5.2]
def change
create_table :histories, options: 'COLLATE=utf8_general_ci' do |t|
create_table :histories do |t|
t.integer :user_id
t.integer :job_id
t.timestamps
......
......@@ -3,7 +3,7 @@
# Description/Explanation of Person class
class CreateFavorites < ActiveRecord::Migration[5.2]
def change
create_table :favorites, options: 'COLLATE=utf8_general_ci' do |t|
create_table :favorites do |t|
t.integer :user_id
t.integer :job_id
t.timestamps
......
......@@ -3,7 +3,7 @@
# Description/Explanation of Person class
class CreateUsers < ActiveRecord::Migration[5.2]
def change
create_table :users, options: 'COLLATE=utf8_general_ci' do |t|
create_table :users do |t|
t.string :email
t.string :name
t.string :password_digest
......
......@@ -3,7 +3,7 @@
# Description/Explanation of Person class
class CreateCityJobs < ActiveRecord::Migration[5.2]
def change
create_table :city_jobs, options: 'COLLATE=utf8_general_ci' do |t|
create_table :city_jobs do |t|
t.references :job
t.references :city
t.timestamps
......
......@@ -3,7 +3,7 @@
# Description/Explanation of Person class
class CreateIndustryJobs < ActiveRecord::Migration[5.2]
def change
create_table :industry_jobs, options: 'COLLATE=utf8_general_ci' do |t|
create_table :industry_jobs do |t|
t.references :industry
t.references :job
t.timestamps
......
......@@ -3,7 +3,7 @@
# Description/Explanation of Person class
class CreateAppliedJobs < ActiveRecord::Migration[5.2]
def change
create_table :applied_jobs, options: 'COLLATE=utf8_general_ci' do |t|
create_table :applied_jobs do |t|
t.references :user
t.references :job
t.string :name
......
This source diff could not be displayed because it is too large. You can view the blob instead.
# frozen_string_literal: true
require 'net/ftp'
require 'logger'
require 'csv'
# Access Ftp Server get file & extract file
class FtpSever
CONTENT_SERVER_DOMAIN_NAME = '192.168.1.156'
CONTENT_SERVER_USER_NAME = 'training'
CONTENT_SERVER_USER_PASSWORD = 'training'
NAME_CSV = 'jobs.zip'
def data_csv
download_csv
CSV.parse(File.read(Rails.root.join('lib', 'csv', 'jobs.csv')), headers: true)
end
def logger
@logger ||= Logger.new(Rails.root.join('log', 'csv.log'))
end
private
def jobs_csv_path
Rails.root.join(NAME_CSV)
end
def download_csv
Net::FTP.open(CONTENT_SERVER_DOMAIN_NAME, CONTENT_SERVER_USER_NAME, CONTENT_SERVER_USER_PASSWORD) do |ftp|
ftp.getbinaryfile(NAME_CSV)
Unzip.extract_zip(jobs_csv_path, Rails.root.join('lib', 'csv'))
File.delete(jobs_csv_path) if File.exist?(jobs_csv_path)
logger.info 'Download & extract success'
rescue StandardError => e
logger.error "Donwload csv have error: #{e}"
end
end
end
# frozen_string_literal: true
# Import data from CSV
class ImportData
attr_accessor :csv
def initialize(csv)
@csv = csv
end
def import_data
import_companies
import_jobs
end
def logger
@logger ||= Logger.new(Rails.root.join('log', 'import_data_csv.log'))
end
private
def import_companies
csv['company name'].each_with_index do |name, index|
Company.find_or_create_by(name: name.strip) do |company|
company.address = csv['company address'][index]
company.short_description = csv['benefit'][index]
end
rescue StandardError => e
logger.error "Import_companies: #{e}"
end
end
def import_jobs
csv.each do |val|
desc = "#{val['requirement']} #{(val['description'])}"
# Get ID Company to create job
company = Company.find_by name: val['company name'].strip
company_id = company.try(:id) || Company::COMPANY_SECURITY
# Get data city do create relationship city_jobs
city_names = val['work place'].delete('[]\"')
city = City.find_or_create_by(name: city_names.strip) { |record| record.area = City.areas['domestic'] }
# Get data Industry do create relationship industry_jobs
industry_name = val['category'].gsub(',', '/').gsub('/', ' / ')
industry = Industry.find_or_create_by(name: industry_name.strip)
Job.find_or_create_by(name: val['name'], company_id: company_id) do |job|
job.level = val['level']
job.salary = val['salary']
job.description = desc
job.city_ids.blank? ? job.cities << city : job.cities == city
job.industry_ids.blank? ? job.industries << industry : job.industries == industry
end
rescue StandardError => e
logger.error "Import_jobs: #{e}"
end
end
end
# frozen_string_literal: true
require 'zip'
# Description/Explanation of Person class
module Unzip
def self.extract_zip(file, destination)
FileUtils.mkdir_p(destination)
Zip::File.open(file) do |zip_file|
zip_file.each do |f|
fpath = File.join(destination, f.name)
zip_file.extract(f, fpath) unless File.exist?(fpath)
end
end
end
end
# frozen_string_literal: true
# Import data from csv
namespace :csv do
task import_csv: :environment do
data_csv = FtpSever.new.data_csv
ImportData.new(data_csv).import_data
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment