admin
2021-12-22 0a1336cd2b95126d66d6f3126cb48a446cdbfad1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
package com.hanju.video.app.ui.main;
 
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.os.Build;
import android.os.Bundle;
 
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentManager;
import androidx.fragment.app.FragmentStatePagerAdapter;
import androidx.viewpager.widget.ViewPager;
 
import android.view.View;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
 
import com.androidquery.AQuery;
import com.google.gson.FieldNamingPolicy;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.reflect.TypeToken;
import com.hanju.video.app.entity.ad.AdPositionEnum;
import com.hanju.video.app.entity.video.HomeNav;
import com.hanju.video.app.ui.mine.DownloadActivity;
import com.hanju.lib.library.util.cache.DiskLruCache;
import com.hanju.lib.library.util.common.StorageUtils;
import com.hanju.lib.library.util.common.StringUtils;
import com.hanju.video.app.util.JsonUtil;
import com.hanju.video.app.util.ad.AdUtil;
import com.hanju.video.app.util.ad.CSJADConstant;
import com.hanju.video.app.util.ad.GDTADConstant;
import com.hanju.video.app.util.ad.IntertitialAdUtil;
import com.nostra13.universalimageloader.cache.disc.naming.Md5FileNameGenerator;
import com.video.youth.util.YouthUtil;
import com.viewpagerindicator.MainTabPageIndicator;
import com.hanju.video.app.util.http.BasicTextHttpResponseHandler;
import com.hanju.video.app.util.http.HttpApiUtil;
import com.hanju.video.app.entity.user.NewComment;
import com.hanju.video.app.entity.video.VideoType;
import com.hanju.video.app.ui.MyRetainViewFragment;
import com.hanju.video.app.ui.login.LoginActivity;
import com.hanju.video.app.ui.login.PersonInfoActivity;
import com.hanju.video.app.ui.mine.BrowserActivity;
import com.hanju.video.app.ui.mine.SystemMessageActivity;
import com.hanju.video.app.ui.mine.WatchHistoryActivity;
import com.hanju.video.app.ui.recommend.RecommendFragment;
import com.hanju.video.app.ui.recommend.SearchActivity;
import com.hanju.video.app.R;
 
import org.apache.http.Header;
import org.json.JSONObject;
 
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Random;
 
import de.greenrobot.event.EventBus;
 
/**
 * Created by weikou2015 on 2017/9/14.
 */
 
public class HomeFragment extends MyRetainViewFragment implements View.OnClickListener {
    /*
     * viewpager定义
     */
    HomePageAdapter adapter;
    ViewPager pager;
    MainTabPageIndicator indicator;
    TextView tv_search;
    ImageView iv_msg_dot;
 
    FrameLayout fl_indicator;
 
 
    private DiskLruCache cache;
 
    private boolean isLogin = false;
 
    SharedPreferences preferences;//
 
    private AQuery mAquery;
 
    public HomeFragment() {
        super(HomeFragment.class.getClass().getName());
    }
 
 
    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        try {
            cache = DiskLruCache.open(
                    new File(StorageUtils.getCacheDirectory(getContext())
                            .toString(), "http"), getVersionNum(getContext()),
                    1, 1024 * 1024);
        } catch (IOException e) {
            e.printStackTrace();
        }
 
        preferences = getContext().getSharedPreferences("user",
                Context.MODE_PRIVATE);
    }
 
 
    public static int getVersionNum(Context context) {
        try {
            PackageInfo pi = context.getPackageManager().getPackageInfo(
                    context.getPackageName(), 0);
            return pi.versionCode;
        } catch (PackageManager.NameNotFoundException e) {
            e.printStackTrace();
            return 1;
        }
    }
 
    @Override
    public int getContentResource() {
        return R.layout.fragment_recommend_category;
    }
 
 
    private void initView(View view) {
        view.findViewById(R.id.iv_activity_main_download).setOnClickListener(this);
        view.findViewById(R.id.ll_activity_main_search).setOnClickListener(this);
        view.findViewById(R.id.iv_recommend_watch_history).setOnClickListener(this);
        view.findViewById(R.id.ll_activity_login).setOnClickListener(this);
        view.findViewById(R.id.iv_recommend_download).setOnClickListener(this);
 
 
        tv_search = view.findViewById(R.id.tv_activity_main_search);
        iv_msg_dot = view.findViewById(R.id.iv_msg_dot);
    }
 
    @Override
    public void onCreateView(View contentView, Bundle savedInstanceState) {
        getActivity().setTheme(R.style.AppTabThemeMain);
        mAquery = new AQuery(contentView);
        initView(contentView);
        pager = contentView.findViewById(R.id.pager_recomend_category);
        fl_indicator = contentView.findViewById(R.id.fl_indicator);
        if (fl_indicator.getChildCount() > 0) {
            fl_indicator.removeAllViews();
        }
        DiskLruCache.Snapshot snapshot = null;
        try {
            if (cache != null) {
                snapshot = cache.get(getKey("getCategories"));
                if (snapshot != null) {
                    List<HomeNav> list =  JsonUtil.videoGson.fromJson(
                            snapshot.getString(0),
                            new TypeToken<List<HomeNav>>() {
                            }.getType());
                    categories.addAll(list);
                }
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (snapshot != null) {
                snapshot.close();
            }
        }
 
        adapter = new HomePageAdapter(
                getChildFragmentManager(), categories);
        pager.setAdapter(adapter);
        indicator = new MainTabPageIndicator(
                pager.getContext());
        indicator.setViewPager(pager, 0);
        fl_indicator.addView(indicator);
        if (categories.size() > 1) {
            fl_indicator.setVisibility(View.VISIBLE);
        } else {
            fl_indicator.setVisibility(View.GONE);
        }
        getHotSearch();
        getCategories();
    }
 
    private String getKey(String method) {
        return new Md5FileNameGenerator().generate(method);
    }
 
    @Override
    public void onResume() {
        super.onResume();
        isLogin = !StringUtils.isEmpty(preferences.getString("LoginUid", ""));
        EventBus.getDefault().register(this);
 
        if (YouthUtil.isOpenYouthMode(getContext())) {
            mAquery.id(R.id.ll_top).visibility(View.GONE);
        } else {
            mAquery.id(R.id.ll_top).visibility(View.VISIBLE);
        }
    }
 
    @Override
    public void onSaveInstanceState(Bundle outState) {
        outState.putString("flash back", "show");
        super.onSaveInstanceState(outState);
    }
 
    @Override
    public void onPause() {
        super.onPause();
        EventBus.getDefault().unregister(this);
    }
 
    public void onEventMainThread(VideoType type) {
        getCategories();
    }
 
    List<HomeNav> categories = new ArrayList<>();
 
 
    int count = 1;
 
    private void getCategories() {
        SharedPreferences preferences = pager.getContext().getSharedPreferences(
                "user", Context.MODE_PRIVATE);
        String uid = preferences.getString("uid", "");
        HttpApiUtil.getChoiceClass(pager.getContext(), uid,
                new BasicTextHttpResponseHandler() {
                    @Override
                    public void onSuccessPerfect(int statusCode,
                                                 Header[] headers, JSONObject jsonObject)
                            throws Exception {
                        if (jsonObject.getBoolean("IsPost")) {
 
                            categories.clear();
 
                            List<HomeNav> list =  JsonUtil.videoGson.fromJson(
                                    jsonObject.getJSONObject("Data")
                                            .getJSONArray("data").toString(),
                                    new TypeToken<List<HomeNav>>() {
                                    }.getType());
 
                            categories.addAll(list);
 
                            if (categories.size() > 1) {
                                fl_indicator.setVisibility(View.VISIBLE);
                            } else {
                                fl_indicator.setVisibility(View.GONE);
                            }
 
                            adapter.notifyDataSetChanged();
                            indicator.notifyDataSetChanged();
 
                            pager.setCurrentItem(0);
 
 
                            count++;
                            try {
                                DiskLruCache.Editor editor = cache
                                        .edit(getKey("getCategories"));
                                editor.set(0, JsonUtil.videoGson.toJson(categories));
                                editor.commit();
                            } catch (IOException e) {
                            }
                        }
                    }
 
                    @Override
                    public void onFinish() {
                        super.onFinish();
                        AdUtil.AD_TYPE adType = AdUtil.getAdType(getContext(), AdPositionEnum.homeInterstitial);
                        if (adType != null) {
                            //Android 5.0
                            if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.KITKAT_WATCH) {
                                adType = AdUtil.AD_TYPE.gdt;
                            }
 
                            if (adType == AdUtil.AD_TYPE.csj) {
                                IntertitialAdUtil.showAd(getActivity(), adType, CSJADConstant.HOME_INTERSTITIALAD);
                            } else {
                                IntertitialAdUtil.showAd(getActivity(), adType, GDTADConstant.HOME_INTERSTITIALAD);
                            }
                        }
 
                    }
                });
    }
 
    class HomePageAdapter extends FragmentStatePagerAdapter {
        private FragmentManager fm;
 
        private List<HomeNav> mlist;
 
        private Map<Integer, Fragment> fragments = new HashMap<>();
 
        public HomePageAdapter(FragmentManager fm, List<HomeNav> list) {
            super(fm);
            this.fm = fm;
            this.mlist = list;
        }
 
        @Override
        public Fragment getItem(int position) {
            Fragment fragment = RecommendFragment.newInstance(mlist.get(position), position + "");
            return fragment;
        }
 
        @Override
        public int getCount() {
            return mlist.size();
        }
 
//        @Override
//        public Object instantiateItem(ViewGroup container, int position) {
//            Fragment fragment = (Fragment) super.instantiateItem(container, position);
//            fm.beginTransaction().show(fragment).commit();
//            return fragment;
//        }
//
//        @Override
//        public void destroyItem(ViewGroup container, int position, Object object) {
//            Fragment fragment = fragments.get(position);
//            try {
//                fm.beginTransaction().hide(fragment).commit();
//            } catch (Exception e) {
//
//            }
//        }
 
        @Nullable
        @Override
        public CharSequence getPageTitle(int position) {
            return mlist.get(position).getName();
        }
    }
 
    @Override
    public void onClick(View view) {
        switch (view.getId()) {
            case R.id.iv_recommend_watch_history: {
                startActivity(new Intent(getContext(),
                        WatchHistoryActivity.class));
            }
            break;
            case R.id.iv_activity_main_download: {
                Toast.makeText(getContext(), "暂时不支持下载!", Toast.LENGTH_LONG).show();
            }
            break;
            case R.id.ll_activity_main_search: {
                Intent intent = new Intent(getContext(), SearchActivity.class);
                intent.putExtra("key", tv_search.getText().toString());
                startActivity(intent);
            }
            break;
            case R.id.nat:
                openMyselfSpread();
                break;
 
            case R.id.iv_recommend_download:
                startActivity(new Intent(getContext(), DownloadActivity.class));
                break;
            case R.id.mine_rl_head:
                Intent intent = new Intent();
                if (isLogin) {// 登录后 逻辑
                    intent.setClass(getContext(), PersonInfoActivity.class);
                } else {// 登录前
                    intent.setClass(getContext(), LoginActivity.class);
                }
                startActivity(intent);
                break;
//            case R.id.rl_mine_message:
//                openMsg();
//                break;
 
 
        }
    }
 
    /**
     * 打开顶部自我推广
     */
    private void openMyselfSpread() {
        SharedPreferences preferences = getContext().getSharedPreferences(
                "user", Context.MODE_PRIVATE);
        SharedPreferences.Editor editor = preferences.edit();
        editor.putLong("latestAdtime", System.currentTimeMillis());
        editor.commit();
        Intent intent = new Intent(getContext(), BrowserActivity.class);
        intent.putExtra("url", preferences.getString("tuiguang_add", ""));
        startActivity(intent);
    }
 
    /**
     * 打开消息页面
     */
    private void openMsg() {
        EventBus.getDefault().post(new NewComment(true));
        SharedPreferences preferences = getContext().getSharedPreferences(
                "user", Context.MODE_PRIVATE);
        SharedPreferences.Editor editor = preferences.edit();
        editor.putBoolean("isCheckedCom", false);
 
        editor.commit();
        startActivity(new Intent(getContext(),
                SystemMessageActivity.class));
    }
 
    private void getHotSearch() {
        SharedPreferences preferences = getContext().getSharedPreferences("user",
                Context.MODE_PRIVATE);
        String uid = preferences.getString("uid", "");
        HttpApiUtil.getHotSearch(getContext(), uid,
                new BasicTextHttpResponseHandler() {
                    @Override
                    public void onSuccessPerfect(int statusCode,
                                                 Header[] headers, JSONObject jsonObject)
                            throws Exception {
                        if (jsonObject.getBoolean("IsPost")) {
                            Gson gson = new GsonBuilder()
                                    .create();
                            List<String> hotSearchs = gson.fromJson(jsonObject
                                    .getJSONObject("Data").getJSONArray("data")
                                    .toString(), new TypeToken<List<String>>() {
                            }.getType());
                            if (hotSearchs != null && hotSearchs.size() > 0) {
                                Random random = new Random();
                                int p = random.nextInt(hotSearchs.size());
                                tv_search.setText(hotSearchs.get(p));
                            }
                        }
                    }
                });
    }
 
    private String getDay(long time) {
        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
        String date = format.format(new Date(time));
        return date;
    }
 
 
}