diff --git a/api/commons.py b/api/commons.py
new file mode 100644
index 0000000000000000000000000000000000000000..9f40acbf95997456d342a10e8fccea45436758a5
--- /dev/null
+++ b/api/commons.py
@@ -0,0 +1,20 @@
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
+# __author__ = "chenwei"
+# Date: 2019/2/14
+
+from utils.base import APIView
+from utils.logger import error_logger
+
+
+class SuggestionListView(APIView):
+    def get(self, request):
+        page = int(request.GET.get('page', 1))
+        limit = int(request.GET.get('limit', 10))
+        filter = self.handle_filter(request.GET.get('filter', ""))
+        try:
+            data = self.rpc['venus/sun/suggestion/list'](offset=(page - 1) * limit, limit=limit, filters=filter).unwrap()
+        except Exception as e:
+            error_logger.error(u'获取建议列表失败%s', e)
+            raise
+        return data
\ No newline at end of file
diff --git a/api/face_star.py b/api/face_star.py
index 70eae45037563842922fc4e63f4c69adb24069e3..38a675b3527f6b1fb098c5dbe10f4569b87ebbc4 100644
--- a/api/face_star.py
+++ b/api/face_star.py
@@ -26,6 +26,7 @@ class FaceStarEdit(APIView):
         _id = request.POST.get('id')
         name = request.POST.get('name')
         sex = request.POST.get('sex')
+        model_type = request.POST.get('model_type')
         ordinary_image_url = request.POST.get('ordinary_image_url')
         modeling_uv_url = request.POST.get('modeling_uv_url')
         modeling_obj_url = request.POST.get('modeling_obj_url')
@@ -36,7 +37,8 @@ class FaceStarEdit(APIView):
                 ordinary_image_url=ordinary_image_url,
                 modeling_obj_url=modeling_obj_url,
                 modeling_uv_url=modeling_uv_url,
-                _id=_id
+                _id=_id,
+                model_type=model_type
             ).unwrap()
         except Exception as e:
             raise e
diff --git a/api/urls.py b/api/urls.py
index 918070984cbd63020f99e9673d4c8ff62f8253e9..ac9817256ecc4894ddefb6304fdc0705721c7a4e 100644
--- a/api/urls.py
+++ b/api/urls.py
@@ -19,6 +19,7 @@ from .upload import *
 from .token import *
 from .face_star import *
 from .advertise import *
+from .commons import *
 
 urlpatterns = [
     # 登陆,注销相关
@@ -37,6 +38,8 @@ urlpatterns = [
     url(r'^user/get$', UserUpdateOrCreate.as_view()),
     url(r'^user/create$', UserUpdateOrCreate.as_view()),
     url(r'^user/group/list$', UserGroupView.as_view()),
+    url(r'^user/images/get$', UserImage.as_view()),
+    url(r'^user/images/create$', UserImage.as_view()),
 
     # group相关
     url(r'^group/list$', GroupListView.as_view()),
@@ -109,6 +112,8 @@ urlpatterns = [
     url(r'^advertise/edit', AdvertiseCreateView.as_view()),
     url(r'^advertise/list$', AdvertiseListView.as_view()),
     url(r'^advertise/create$', AdvertiseCreateView.as_view()),
+
+    url(r'^suggestion/list$', SuggestionListView.as_view())
 ]
 
 search_urlpatterns = [
diff --git a/api/user.py b/api/user.py
index d9b1f46a533702f4c648dc597526841b5ae6cfa0..ea8da387c1c58a9920cd52326674bddf7af1ed79 100644
--- a/api/user.py
+++ b/api/user.py
@@ -5,9 +5,15 @@
 
 import json
 from django.conf import settings
+from gm_types.ascle import ERROR
+from gm_upload import IMG_TYPE, upload_with_short
+
 from utils.base import APIView
 from django.contrib.auth.hashers import make_password
+
+from utils.download import download_img_func
 from utils.logger import error_logger
+from utils.pic_tools import tailor_image
 
 
 class UserListView(APIView):
@@ -89,4 +95,68 @@ class UserGroupView(APIView):
         except Exception as e:
             error_logger.error(u'获取小组用户详情失败%s' , e)
             raise
-        return data
\ No newline at end of file
+        return data
+
+
+class UserImage(APIView):
+
+    def post(self, request):
+        image_id = request.POST.get('image_id', '')
+        image_url = request.POST.get('image_url', '')
+        user_id = request.POST.get('user_id', '')
+
+        if not all([image_id, image_url, user_id]):
+            error_logger.error(u'参数不完整')
+            return self.write_fail(code=ERROR.ARG_MISS, message='参数不完整')
+
+        resp = self.rpc['venus/sun/user/check_image'](
+            user_id=user_id, image_id=image_id).unwrap()
+        if resp:
+            return self.write_success(data='', message='操作成功')
+        # 目前不需要 从图片中切出人脸
+        # try:
+        #     data = self.rpc['saber/face/detect'](url=image_url).unwrap()
+        # except Exception as e:
+        #     error_logger.error(u'分析人脸失败:%s', e)
+        #     return self.write_fail(code=-1, message='分析人脸失败')
+
+        # faces = [{
+        #         "point": [
+        #             item["rect"]["left"],
+        #             item["rect"]["top"],
+        #             item["rect"]["right"]-item["rect"]["left"],
+        #             item["rect"]["bottom"]-item["rect"]["top"]]} for item in data.get("faces", [])]
+        # if faces:
+        #     point = faces[0].get('point', [])
+        # else:
+        #     return self.write_fail(code=-1, message='获取人脸失败')
+
+        # file_path = download_img_func(image_url, user_id, suffix="png")
+        # images = tailor_image(file_path, [point])
+        # header_pic_path = images[0]
+        # with open(header_pic_path, 'rb') as f:
+        #     image_url = upload_with_short(f, img_type=IMG_TYPE.USEREXTRA)[0]
+        try:
+            result = self.rpc['venus/sun/user/create_update_image'](
+                image_url=image_url, user_id=user_id, image_id=image_id).unwrap()
+        except Exception as e:
+            raise e
+        return self.write_fail(
+            code=-1 if result else 0,
+            message="成功" if result else "失败"
+        )
+
+    def get(self, request):
+        user_id = request.GET.get('user_id')
+        offset = int(request.GET.get('page', 1))
+        count = int(request.GET.get('limit', 10))
+        if not user_id:
+            error_logger.error(u'参数不完整')
+            return self.write_fail(code=ERROR.ARG_MISS, message='参数不完整')
+        try:
+            data = self.rpc['venus/sun/user/user_image_list'](
+                user_id=user_id, offset=(offset - 1) * count, limit=count).unwrap()
+        except Exception as e:
+            error_logger.error(u'获取%s用户头像失败%s' % (user_id, e))
+            raise
+        return data
diff --git a/requirements.txt b/requirements.txt
index 4662ec698050d546b4dfaaf1e715d7b9ff7d5614..e7e7e2986fce11c0e33fff5dea5b3599398aceca 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -13,3 +13,5 @@ git+ssh://git@git.wanmeizhensuo.com/backend/gm-logging.git@v0.7.8
 git+ssh://git@git.wanmeizhensuo.com/backend/gm-dataquery.git@v0.2.10
 git+ssh://git@git.wanmeizhensuo.com/system/gm-tracer.git@v0.1.2
 git+ssh://git@git.wanmeizhensuo.com/alpha/alpha-types.git@master
+filetype==1.0.2
+Pillow==5.4.1
\ No newline at end of file
diff --git a/sun/settings.py b/sun/settings.py
index 31cb7c84f5e7418cb551e9e288e75a1f2ddf23bb..d10a030f28e138589200046771d9e5539a27b3fe 100644
--- a/sun/settings.py
+++ b/sun/settings.py
@@ -153,4 +153,7 @@ AVATAR = 'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif'
 PUPPET_PASSWORD = 123456
 
 # 重置运营管理登陆密码
-OPERATOR_PASSWORD = 123456
\ No newline at end of file
+OPERATOR_PASSWORD = 123456
+
+# 图片下载的存储路径
+DOWNLOAD_IMAGE_PATH = u'/data/header-images/'
diff --git a/utils/download.py b/utils/download.py
new file mode 100644
index 0000000000000000000000000000000000000000..f3db5c2f6d84863897718506fe6496c4dbf16553
--- /dev/null
+++ b/utils/download.py
@@ -0,0 +1,75 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+import os
+import requests
+
+from django.conf import settings
+
+
+class DownloadFunc(object):
+    base_path = settings.DOWNLOAD_IMAGE_PATH
+
+    @staticmethod
+    def get_file_base_path(sole_id=None):
+
+        dir_path = os.path.join(DownloadFunc.base_path, sole_id)
+
+        if not os.path.exists(dir_path):
+            os.makedirs(dir_path)
+
+        return dir_path
+
+    @staticmethod
+    def format_file_abs_path_and_name(dir_path, file_name):
+        """
+        拼接文件绝对地址
+        :param dir_path: 地址
+        :param file_name: 文件名
+        :return:
+        """
+        return os.path.join(dir_path, file_name)
+
+    @staticmethod
+    def get_url_content(url):
+        """
+        :param url:
+        :return:
+        """
+        content = b''
+        for _ in range(3):
+            try:
+                response = requests.get(url, timeout=10)
+                return response.content
+            except:
+                raise Exception('download failed')
+
+        return content
+
+    @classmethod
+    def download_resources(cls, url, sole_id, suffix=""):
+        """
+        下载文件资源
+        :param url: 下载地址
+        :param sole_id:  唯一id
+        :param suffix:  后缀
+        :return:
+        """
+        _content = cls.get_url_content(url)
+        if _content:
+            dir_path = cls.get_file_base_path(sole_id)
+            name = url.rsplit("/", 1)[-1]
+            if suffix:
+                name = "{name}.{suffix}".format(name=name, suffix=suffix)
+            file_path = cls.format_file_abs_path_and_name(dir_path, name)
+            # 写入本地
+            with open(file_path, "wb") as w_:
+                w_.write(_content)
+
+            return file_path
+
+        raise Exception("write Failed")
+
+
+download_img_func = DownloadFunc.download_resources
+get_dir_path = DownloadFunc.get_file_base_path
diff --git a/utils/pic_tools.py b/utils/pic_tools.py
new file mode 100644
index 0000000000000000000000000000000000000000..57c37289b5c92bf4f1f2c26314907d8c2478c488
--- /dev/null
+++ b/utils/pic_tools.py
@@ -0,0 +1,57 @@
+import os.path
+import mimetypes
+
+import filetype
+from PIL import Image
+from django.conf import settings
+
+
+def get_file_type(filepath, ft=None):
+
+    ft = filetype.guess(filepath)
+    ext = ft.extension
+
+    return ext if ext else 'txt'
+
+
+def get_filename(name):
+
+    h = hash(name)
+    if h < 0:
+        h = -h
+
+    return "{}".format(h)
+
+
+def tailor_image(image_path, points, base_path='.'):
+    """以左上角为原点 向右建立x轴 向下建立y轴, 同时截取多张
+
+    :param image: Image obj
+    :param point: [(x, y, delta_x, delta_y)]
+    :return:
+    """
+
+    image = Image.open(image_path)
+    heiget = image.height
+    width = image.width
+
+    images = []
+    for idx, point in enumerate(points):
+        if not (width >= point[0] and width >= point[0] + point[2]) or \
+                not (heiget >= point[1] and heiget >= point[1] + point[3]):
+            continue
+
+        border = (point[0], point[1], point[0] + point[2], point[1] + point[3])
+        choice_image = image.crop(border)
+
+        filename = "{}_{}.{}".format(get_filename(image_path), idx, get_file_type(image_path))
+        base_dir = os.path.join(settings.DOWNLOAD_IMAGE_PATH)
+        if not os.path.exists(base_dir):
+            os.makedirs(base_dir)
+
+        file_path = os.path.join(base_dir, filename)
+        print(file_path)
+        choice_image.save(file_path)
+        images.append(file_path)
+
+    return images